Sun2 native support (untested).
[deliverable/binutils-gdb.git] / gdb / vx-share / xdr_ld.h
CommitLineData
dd3b648e
RP
1/* xdr_ld.h - xdr for additional dbxWorks structures */
2
3/*
4modification history
5--------------------
601a,05jun90,llk extracted from xdr_dbx.h.
7*/
8
9#ifndef INCxdrldh
10#define INCxdrldh
11
12#define MAXSTRLEN 256
13#define MAXTBLSZ 100
14
15/*
16 * structure used to pass back the information for a single file
17 * loaded in VxWorks
18 */
19struct ldfile {
20 char *name;
21 int txt_addr;
22 int data_addr;
23 int bss_addr;
24};
25typedef struct ldfile ldfile;
26
27/*
28 * structure used to return a list of all files loaded over to
29 * VxWorks. (VX_STATE_INQ return)
30 */
31struct ldtabl {
32 u_int tbl_size;
33 ldfile *tbl_ent;
34};
35typedef struct ldtabl ldtabl;
36
37
38bool_t xdr_ldfile();
39bool_t xdr_ldtabl();
40
41#endif INCxdrldh
This page took 0.076062 seconds and 4 git commands to generate.