X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/blobdiff_plain/90acb15a1f41955ab2a3413c91835bdf17fdfd47..31cef89cb428866f787983e68246030321893df4:/usr/src/cmd/sdb/head.h diff --git a/usr/src/cmd/sdb/head.h b/usr/src/cmd/sdb/head.h index b492c813b5..1b02dd4b97 100644 --- a/usr/src/cmd/sdb/head.h +++ b/usr/src/cmd/sdb/head.h @@ -1,10 +1,10 @@ - -#include -#include -#include "sgtty.h" +/* "@(#)head.h 4.1 10/9/80" */ #include #define PAGSIZ (CLSIZE*NBPG) -#include "bio.h" +#include +#include +#include +#include "old.h" #include "defs.h" /* input line decoding */ @@ -19,19 +19,28 @@ int scallf; /* set to 1 iff procedure call */ int reflag; /* set to 1 iff re */ int redir; /* set to 1 iff forward search */ int colonflag; /* set to 1 iff colon typed */ +int ncolonflag; /* set to 1 iff colon typed after number */ +int percentflag; /* set to 1 iff percent symbol typed */ /* source file i/o */ char curfile[30]; /* name of file being edited */ int fline; /* line number in file */ -int maxfline; /* maximum line number in file, 0 if unknown */ -struct brbuf fiobuf; /* file descriptor */ -char fbuf[256]; /* current line from file */ +char fbuf[BUFSIZ]; /* current line from file */ char filework[128]; /* place to put filename */ char *fp; /* pointer to it */ int nolines; /* set to 1 iff no lines in file */ +#ifdef FLEXNAMES +off_t gstart; /* start of string table in a.out */ +char *strtab; /* string table from a.out * (in core!) */ +long ssiz; /* size of string table (for range checks) */ +#endif /* returned by slookup */ +#ifndef FLEXNAMES char sl_name[8]; +#else +char *sl_name; +#endif char sl_class; short sl_type; int sl_size, sl_addr; @@ -46,7 +55,9 @@ char dschar; /* '/' if value should be displayed */ /* symbol table info */ long ststart; /* offset of symbol table in a.out */ +#ifndef VMUNIX struct brbuf sbuf; /* buffer for symbol table */ +#endif long extstart; /* offset of first external in a.out */ /* address info */ @@ -64,14 +75,17 @@ struct sgttyb sdbttym, userttym; char oldargs[128]; char prname[50]; /* print name used by outvar */ jmp_buf env; /* environment for setjmp, longjmp */ -#define WINDOW 10 /* window size for display commands */ -#define COMMANDS "\004\"+-=!/BCDRSTabcdegklmpqrstwzVXY" - /* each sdb command must appear here */ int debug; /* toggled by Y command */ time_t symtime; /* modification time of symfil */ +char *symfil; +char *corfil; +ADDR exactaddr, lnfaddr; /* set by adrtolineno() */ +ADDR firstdata; /* lowest address of data */ #define STABMASK 0376 - +#define WINDOW 10 /* window size for display commands */ +#define COMMANDS "\004\"+-=!/BCDMQRSTXabcdegklmpqrstwxzVXY" + /* each sdb command must appear here */ #define NUMARGS 16 /* number of args allowed in sub call */ #define SUBSTSP 512 /* length of space for sub args and strings */ #define WORDSIZE 4 /* wordsize in bytes on this machine */ @@ -80,14 +94,22 @@ time_t symtime; /* modification time of symfil */ #define MAXADDR 1L<<30 struct filet { +#ifndef FLEXNAMES char sfilename[31]; /* source file name */ +#else + char *sfilename; +#endif char lineflag; /* set iff this is a '#line' file */ ADDR faddr; /* address in core */ long stf_offset; /* offset in a.out */ } *files, *badfile; struct proct { +#ifndef FLEXNAMES char pname[8]; /* procedure name */ +#else + char *pname; +#endif ADDR paddr; /* address in core */ long st_offset; /* offset in a.out */ struct filet *sfptr; /* source file name pointer */ @@ -117,6 +139,6 @@ ADDR varaddr(), dispvar(); ADDR extaddr(), formaddr(), stackreg(); struct proct *curproc(); struct proct *findproc(); -struct proct *adrtoproc(); +struct proct *adrtoprocp(); struct proct *initframe(), *nextframe(); struct filet *findfile(), *adrtofilep();