]> rtime.felk.cvut.cz Git - l4.git/blob - l4/pkg/l4re-core/uclibc/lib/contrib/uclibc/libc/sysdeps/linux/sh/sys/procfs.h
Update
[l4.git] / l4 / pkg / l4re-core / uclibc / lib / contrib / uclibc / libc / sysdeps / linux / sh / sys / procfs.h
1 /* Copyright (C) 1996, 1997, 1999, 2000 Free Software Foundation, Inc.
2    This file is part of the GNU C Library.
3
4    The GNU C Library is free software; you can redistribute it and/or
5    modify it under the terms of the GNU Lesser General Public
6    License as published by the Free Software Foundation; either
7    version 2.1 of the License, or (at your option) any later version.
8
9    The GNU C Library is distributed in the hope that it will be useful,
10    but WITHOUT ANY WARRANTY; without even the implied warranty of
11    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12    Lesser General Public License for more details.
13
14    You should have received a copy of the GNU Lesser General Public
15    License along with the GNU C Library; if not, see
16    <http://www.gnu.org/licenses/>.  */
17
18 #ifndef _SYS_PROCFS_H
19 #define _SYS_PROCFS_H   1
20
21 /* This is somehow modelled after the file of the same name on SysVr4
22    systems.  It provides a definition of the core file format for ELF
23    used on Linux.  */
24
25 #include <features.h>
26 #include <signal.h>
27 #include <sys/time.h>
28 #include <sys/types.h>
29 #include <sys/ucontext.h>
30 #include <sys/user.h>
31
32 __BEGIN_DECLS
33
34 /*
35  * ELF register definitions...
36  */
37 typedef unsigned long elf_greg_t;
38
39 #define ELF_NGREG (sizeof (struct pt_regs) / sizeof(elf_greg_t))
40 typedef elf_greg_t elf_gregset_t[ELF_NGREG];
41
42 typedef struct user_fpu_struct elf_fpregset_t;
43
44 struct elf_siginfo
45   {
46     int si_signo;                       /* Signal number.  */
47     int si_code;                        /* Extra code.  */
48     int si_errno;                       /* Errno.  */
49   };
50
51
52 /* Definitions to generate Intel SVR4-like core files.  These mostly
53    have the same names as the SVR4 types with "elf_" tacked on the
54    front to prevent clashes with linux definitions, and the typedef
55    forms have been avoided.  This is mostly like the SVR4 structure,
56    but more Linuxy, with things that Linux does not support and which
57    gdb doesn't really use excluded.  Fields present but not used are
58    marked with "XXX".  */
59 struct elf_prstatus
60   {
61 #if 0
62     long int pr_flags;                  /* XXX Process flags.  */
63     short int pr_why;                   /* XXX Reason for process halt.  */
64     short int pr_what;                  /* XXX More detailed reason.  */
65 #endif
66     struct elf_siginfo pr_info;         /* Info associated with signal.  */
67     short int pr_cursig;                /* Current signal.  */
68     unsigned long int pr_sigpend;       /* Set of pending signals.  */
69     unsigned long int pr_sighold;       /* Set of held signals.  */
70 #if 0
71     struct sigaltstack pr_altstack;     /* Alternate stack info.  */
72     struct sigaction pr_action;         /* Signal action for current sig.  */
73 #endif
74     __pid_t pr_pid;
75     __pid_t pr_ppid;
76     __pid_t pr_pgrp;
77     __pid_t pr_sid;
78     struct timeval pr_utime;            /* User time.  */
79     struct timeval pr_stime;            /* System time.  */
80     struct timeval pr_cutime;           /* Cumulative user time.  */
81     struct timeval pr_cstime;           /* Cumulative system time.  */
82 #if 0
83     long int pr_instr;                  /* Current instruction.  */
84 #endif
85     elf_gregset_t pr_reg;               /* GP registers.  */
86     int pr_fpvalid;                     /* True if math copro being used.  */
87   };
88
89
90 #define ELF_PRARGSZ     (80)    /* Number of chars for args */
91
92 struct elf_prpsinfo
93   {
94     char pr_state;                      /* Numeric process state.  */
95     char pr_sname;                      /* Char for pr_state.  */
96     char pr_zomb;                       /* Zombie.  */
97     char pr_nice;                       /* Nice val.  */
98     unsigned long int pr_flag;          /* Flags.  */
99     long pr_uid;
100     long pr_gid;
101     int pr_pid, pr_ppid, pr_pgrp, pr_sid;
102     /* Lots missing */
103     char pr_fname[16];                  /* Filename of executable.  */
104     char pr_psargs[ELF_PRARGSZ];        /* Initial part of arg list.  */
105   };
106
107
108 /* Addresses.  */
109 typedef void *psaddr_t;
110
111 /* Register sets.  Linux has different names.  */
112 typedef elf_gregset_t prgregset_t;
113 typedef elf_fpregset_t prfpregset_t;
114
115 /* We don't have any differences between processes and threads,
116    therefore habe only ine PID type.  */
117 typedef __pid_t lwpid_t;
118
119
120 typedef struct elf_prstatus prstatus_t;
121 typedef struct elf_prpsinfo prpsinfo_t;
122
123 __END_DECLS
124
125 #endif  /* sys/procfs.h */