procfs.h (6eef6816a8ab9386fba8117da118af4f4b903085) | procfs.h (cfdb160e3181f671ac7d9519329b9ff268f5ac28) |
---|---|
1/*- 2 * Copyright (c) 1998 John D. Polstra. 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright --- 51 unchanged lines hidden (view full) --- 60 size_t pr_gregsetsz; /* sizeof(gregset_t) (1) */ 61 size_t pr_fpregsetsz; /* sizeof(fpregset_t) (1) */ 62 int pr_osreldate; /* Kernel version (1) */ 63 int pr_cursig; /* Current signal (1) */ 64 pid_t pr_pid; /* Process ID (1) */ 65 gregset_t pr_reg; /* General purpose registers (1) */ 66} prstatus_t; 67 | 1/*- 2 * Copyright (c) 1998 John D. Polstra. 3 * All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright --- 51 unchanged lines hidden (view full) --- 60 size_t pr_gregsetsz; /* sizeof(gregset_t) (1) */ 61 size_t pr_fpregsetsz; /* sizeof(fpregset_t) (1) */ 62 int pr_osreldate; /* Kernel version (1) */ 63 int pr_cursig; /* Current signal (1) */ 64 pid_t pr_pid; /* Process ID (1) */ 65 gregset_t pr_reg; /* General purpose registers (1) */ 66} prstatus_t; 67 |
68typedef gregset_t prgregset_t; |
|
68typedef fpregset_t prfpregset_t; 69 70#define PRFNAMESZ 16 /* Maximum command length saved */ 71#define PRARGSZ 80 /* Maximum argument bytes saved */ 72 73#define PRPSINFO_VERSION 1 /* Current version of prpsinfo_t */ 74 75typedef struct prpsinfo { 76 int pr_version; /* Version number of struct (1) */ 77 size_t pr_psinfosz; /* sizeof(prpsinfo_t) (1) */ 78 char pr_fname[PRFNAMESZ+1]; /* Command name, null terminated (1) */ 79 char pr_psargs[PRARGSZ+1]; /* Arguments, null terminated (1) */ 80} prpsinfo_t; 81 | 69typedef fpregset_t prfpregset_t; 70 71#define PRFNAMESZ 16 /* Maximum command length saved */ 72#define PRARGSZ 80 /* Maximum argument bytes saved */ 73 74#define PRPSINFO_VERSION 1 /* Current version of prpsinfo_t */ 75 76typedef struct prpsinfo { 77 int pr_version; /* Version number of struct (1) */ 78 size_t pr_psinfosz; /* sizeof(prpsinfo_t) (1) */ 79 char pr_fname[PRFNAMESZ+1]; /* Command name, null terminated (1) */ 80 char pr_psargs[PRARGSZ+1]; /* Arguments, null terminated (1) */ 81} prpsinfo_t; 82 |
83typedef void *psaddr_t; /* An address in the target process. */ 84 |
|
82#endif /* _SYS_PROCFS_H_ */ | 85#endif /* _SYS_PROCFS_H_ */ |