GDBMI_break_disable.st
changeset 12 568a2971c977
child 78 c24e7d8bc881
equal deleted inserted replaced
11:474fbb650afe 12:568a2971c977
       
     1 "{ Package: 'jv:libgdbs' }"
       
     2 
       
     3 GDBMICommand subclass:#GDBMI_break_disable
       
     4 	instanceVariableNames:''
       
     5 	classVariableNames:''
       
     6 	poolDictionaries:''
       
     7 	category:'GDB-Core-Commands-MI'
       
     8 !
       
     9 
       
    10 !GDBMI_break_disable class methodsFor:'documentation'!
       
    11 
       
    12 documentation
       
    13 "
       
    14 The `-break-disable' Command
       
    15 ----------------------------
       
    16 
       
    17 Synopsis
       
    18 ........
       
    19 
       
    20       -break-disable ( BREAKPOINT )+
       
    21 
       
    22    Disable the named BREAKPOINT(s).  The field `enabled' in the break
       
    23 list is now set to `n' for the named BREAKPOINT(s).
       
    24 
       
    25 {No value for `GDBN'} Command
       
    26 .............................
       
    27 
       
    28 The corresponding {No value for `GDBN'} command is `disable'.
       
    29 
       
    30 Example
       
    31 .......
       
    32 
       
    33      (gdb)
       
    34      -break-disable 2
       
    35      ^done
       
    36      (gdb)
       
    37      -break-list
       
    38      ^done,BreakpointTable={nr_rows='1',nr_cols='6',
       
    39      hdr=[{width='3',alignment='-1',col_name='number',colhdr='Num'},
       
    40      {width='14',alignment='-1',col_name='type',colhdr='Type'},
       
    41      {width='4',alignment='-1',col_name='disp',colhdr='Disp'},
       
    42      {width='3',alignment='-1',col_name='enabled',colhdr='Enb'},
       
    43      {width='10',alignment='-1',col_name='addr',colhdr='Address'},
       
    44      {width='40',alignment='2',col_name='what',colhdr='What'}],
       
    45      body=[bkpt={number='2',type='breakpoint',disp='keep',enabled='n',
       
    46      addr='0x000100d0',func='main',file='hello.c',fullname='/home/foo/hello.c',
       
    47      line='5',thread-groups=['i1'],times='0'}]}
       
    48      (gdb)
       
    49 
       
    50 
       
    51 "
       
    52 ! !
       
    53 
       
    54 !GDBMI_break_disable methodsFor:'accessing'!
       
    55 
       
    56 operation
       
    57 	^ 'break-disable'
       
    58 ! !
       
    59