GDBMI_break_enable.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_enable
       
     4 	instanceVariableNames:''
       
     5 	classVariableNames:''
       
     6 	poolDictionaries:''
       
     7 	category:'GDB-Core-Commands-MI'
       
     8 !
       
     9 
       
    10 !GDBMI_break_enable class methodsFor:'documentation'!
       
    11 
       
    12 documentation
       
    13 "
       
    14 The `-break-enable' Command
       
    15 ---------------------------
       
    16 
       
    17 Synopsis
       
    18 ........
       
    19 
       
    20       -break-enable ( BREAKPOINT )+
       
    21 
       
    22    Enable (previously disabled) BREAKPOINT(s).
       
    23 
       
    24 {No value for `GDBN'} Command
       
    25 .............................
       
    26 
       
    27 The corresponding {No value for `GDBN'} command is `enable'.
       
    28 
       
    29 Example
       
    30 .......
       
    31 
       
    32      (gdb)
       
    33      -break-enable 2
       
    34      ^done
       
    35      (gdb)
       
    36      -break-list
       
    37      ^done,BreakpointTable={nr_rows='1',nr_cols='6',
       
    38      hdr=[{width='3',alignment='-1',col_name='number',colhdr='Num'},
       
    39      {width='14',alignment='-1',col_name='type',colhdr='Type'},
       
    40      {width='4',alignment='-1',col_name='disp',colhdr='Disp'},
       
    41      {width='3',alignment='-1',col_name='enabled',colhdr='Enb'},
       
    42      {width='10',alignment='-1',col_name='addr',colhdr='Address'},
       
    43      {width='40',alignment='2',col_name='what',colhdr='What'}],
       
    44      body=[bkpt={number='2',type='breakpoint',disp='keep',enabled='y',
       
    45      addr='0x000100d0',func='main',file='hello.c',fullname='/home/foo/hello.c',
       
    46      line='5',thread-groups=['i1'],times='0'}]}
       
    47      (gdb)
       
    48 
       
    49 
       
    50 "
       
    51 ! !
       
    52 
       
    53 !GDBMI_break_enable methodsFor:'accessing'!
       
    54 
       
    55 operation
       
    56 	^ 'break-enable'
       
    57 ! !
       
    58