aboutsummaryrefslogtreecommitdiff
path: root/src/monkey/gdbmi_symbol_query.c
blob: 891051771f042ad93f96a5658e0b4ab2606d40ef (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
/**[txh]********************************************************************

  Copyright (c) 2004 by Salvador E. Tropea.
  Covered by the GPL license.

  Module: Symbol query.
  Comments:
  GDB/MI commands for the "Symbol Query" section.@p

@<pre>
gdb command:              Implemented?
-symbol-info-address      N.A. (info address, human readable)
-symbol-info-file         N.A.
-symbol-info-function     N.A.
-symbol-info-line         N.A. (info line, human readable)
-symbol-info-symbol       N.A. (info symbol, human readable)
-symbol-list-functions    N.A. (info functions, human readable)
-symbol-list-types        N.A. (info types, human readable)
-symbol-list-variables    N.A. (info variables, human readable)
-symbol-list-lines        No (gdb 6.x)
-symbol-locate            N.A.
-symbol-type              N.A. (ptype, human readable)
@</pre>

Note:@p

Only one is implemented and not in gdb 5.x.@p

***************************************************************************/

#include "gdbmi.h"