VDBDebuggerConsoleApplication.st
changeset 39 d2afdbaaabdb
parent 35 f6e4876af2e7
child 40 d766d4c854a2
equal deleted inserted replaced
38:9b861cb882c8 39:d2afdbaaabdb
   155                     cmd := (GDBMIParser on:cmdLine) parseCommand.
   155                     cmd := (GDBMIParser on:cmdLine) parseCommand.
   156                     cmd isCLICommand ifTrue:[ 
   156                     cmd isCLICommand ifTrue:[ 
   157                         cmd runOnBackground: true.  
   157                         cmd runOnBackground: true.  
   158                     ].
   158                     ].
   159                     outstandingCommand := cmd.
   159                     outstandingCommand := cmd.
   160                     debugger send: cmd wait: false. 
   160                     debugger send:cmd andWait:false. 
   161                     outstandingCommandBlocker wait.
   161                     outstandingCommandBlocker wait.
   162                 ] loop. 
   162                 ] loop. 
   163             ] newProcess.
   163             ] newProcess.
   164         consoleProcess name: 'VDB Debugger Console REPL loop'.
   164         consoleProcess name: 'VDB Debugger Console REPL loop'.
   165         consoleProcess resume.
   165         consoleProcess resume.