]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gdb/gdb_proc_service.h
import gdb-1999-12-21 snapshot
[thirdparty/binutils-gdb.git] / gdb / gdb_proc_service.h
CommitLineData
ed9a39eb
JM
1typedef enum {
2 PS_OK, /* generic "call succeeded" */
3 PS_ERR, /* generic. */
4 PS_BADPID, /* bad process handle */
5 PS_BADLID, /* bad lwp identifier */
6 PS_BADADDR, /* bad address */
7 PS_NOSYM, /* p_lookup() could not find given symbol */
8 PS_NOFREGS
9 /*
10 * FPU register set not available for given
11 * lwp
12 */
13} ps_err_e;
14
15typedef unsigned int lwpid_t;
16typedef unsigned long paddr_t;
17typedef unsigned long psaddr_t;
18
19
20typedef gregset_t prgregset_t; /* BOGUS BOGUS BOGUS */
21typedef fpregset_t prfpregset_t; /* BOGUS BOGUS BOGUS */
22
23
24struct ps_prochandle; /* user defined. */