procfs.h (93898f2b2d3339874ac31d935b8c67c67b6929ba) procfs.h (8c64af4f750d8c5fdc217c194d0d3ab5651617c3)
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

--- 9 unchanged lines hidden (view full) ---

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
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

--- 9 unchanged lines hidden (view full) ---

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 * $FreeBSD$
26 * $Id$
27 */
28
29#ifndef _SYS_PROCFS_H_
30#define _SYS_PROCFS_H_
31
32#include <sys/param.h>
33#include <machine/reg.h>
34

--- 25 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
27 */
28
29#ifndef _SYS_PROCFS_H_
30#define _SYS_PROCFS_H_
31
32#include <sys/param.h>
33#include <machine/reg.h>
34

--- 25 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[1];
69typedef fpregset_t prfpregset_t;
70
68typedef fpregset_t prfpregset_t;
69
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) */
70#define PRARGSZ 80 /* Maximum argument bytes saved */
71
72#define PRPSINFO_VERSION 1 /* Current version of prpsinfo_t */
73
74typedef struct prpsinfo {
75 int pr_version; /* Version number of struct (1) */
76 size_t pr_psinfosz; /* sizeof(prpsinfo_t) (1) */
79 char pr_fname[PRFNAMESZ+1]; /* Command name, null terminated (1) */
77 char pr_fname[MAXCOMLEN+1]; /* Command name, null terminated (1) */
80 char pr_psargs[PRARGSZ+1]; /* Arguments, null terminated (1) */
81} prpsinfo_t;
82
78 char pr_psargs[PRARGSZ+1]; /* Arguments, null terminated (1) */
79} prpsinfo_t;
80
83typedef uint64_t psaddr_t; /* An address in the target process. */
84
85#endif /* _SYS_PROCFS_H_ */
81#endif /* _SYS_PROCFS_H_ */