GDBMI_thread_list_ids.st
changeset 12 568a2971c977
child 74 d53d325c2930
equal deleted inserted replaced
11:474fbb650afe 12:568a2971c977
       
     1 "{ Package: 'jv:libgdbs' }"
       
     2 
       
     3 GDBMICommand subclass:#GDBMI_thread_list_ids
       
     4 	instanceVariableNames:''
       
     5 	classVariableNames:''
       
     6 	poolDictionaries:''
       
     7 	category:'GDB-Core-Commands-MI'
       
     8 !
       
     9 
       
    10 !GDBMI_thread_list_ids class methodsFor:'documentation'!
       
    11 
       
    12 documentation
       
    13 "
       
    14 The `-thread-list-ids' Command
       
    15 ------------------------------
       
    16 
       
    17 Synopsis
       
    18 ........
       
    19 
       
    20       -thread-list-ids
       
    21 
       
    22    Produces a list of the currently known {No value for `GDBN'} thread
       
    23 ids.  At the end of the list it also prints the total number of such
       
    24 threads.
       
    25 
       
    26    This command is retained for historical reasons, the `-thread-info'
       
    27 command should be used instead.
       
    28 
       
    29 {No value for `GDBN'} Command
       
    30 .............................
       
    31 
       
    32 Part of `info threads' supplies the same information.
       
    33 
       
    34 Example
       
    35 .......
       
    36 
       
    37      (gdb)
       
    38      -thread-list-ids
       
    39      ^done,thread-ids={thread-id='3',thread-id='2',thread-id='1'},
       
    40      current-thread-id='1',number-of-threads='3'
       
    41      (gdb)
       
    42 
       
    43 
       
    44 "
       
    45 ! !
       
    46 
       
    47 !GDBMI_thread_list_ids methodsFor:'accessing'!
       
    48 
       
    49 operation
       
    50 	^ 'thread-list-ids'
       
    51 ! !
       
    52