GDBMI_target_disconnect.st
changeset 12 568a2971c977
child 78 c24e7d8bc881
equal deleted inserted replaced
11:474fbb650afe 12:568a2971c977
       
     1 "{ Package: 'jv:libgdbs' }"
       
     2 
       
     3 GDBMICommand subclass:#GDBMI_target_disconnect
       
     4 	instanceVariableNames:''
       
     5 	classVariableNames:''
       
     6 	poolDictionaries:''
       
     7 	category:'GDB-Core-Commands-MI'
       
     8 !
       
     9 
       
    10 !GDBMI_target_disconnect class methodsFor:'documentation'!
       
    11 
       
    12 documentation
       
    13 "
       
    14 The `-target-disconnect' Command
       
    15 --------------------------------
       
    16 
       
    17 Synopsis
       
    18 ........
       
    19 
       
    20       -target-disconnect
       
    21 
       
    22    Disconnect from the remote target.  There's no output and the target
       
    23 is generally not resumed.
       
    24 
       
    25 {No value for `GDBN'} Command
       
    26 .............................
       
    27 
       
    28 The corresponding {No value for `GDBN'} command is `disconnect'.
       
    29 
       
    30 Example
       
    31 .......
       
    32 
       
    33      (gdb)
       
    34      -target-disconnect
       
    35      ^done
       
    36      (gdb)
       
    37 
       
    38 
       
    39 "
       
    40 ! !
       
    41 
       
    42 !GDBMI_target_disconnect methodsFor:'accessing'!
       
    43 
       
    44 operation
       
    45 	^ 'target-disconnect'
       
    46 ! !
       
    47