Add type definitions for prgregset_t and psaddr_t. Both are used by

the proc services API. The prfpregset_t type already existed.
This commit is contained in:
Marcel Moolenaar 2004-06-25 23:06:20 +00:00
parent 21da572743
commit cfdb160e31
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=131119

View file

@ -65,6 +65,7 @@ typedef struct prstatus {
gregset_t pr_reg; /* General purpose registers (1) */
} prstatus_t;
typedef gregset_t prgregset_t;
typedef fpregset_t prfpregset_t;
#define PRFNAMESZ 16 /* Maximum command length saved */
@ -79,4 +80,6 @@ typedef struct prpsinfo {
char pr_psargs[PRARGSZ+1]; /* Arguments, null terminated (1) */
} prpsinfo_t;
typedef void *psaddr_t; /* An address in the target process. */
#endif /* _SYS_PROCFS_H_ */