Home | History | Annotate | Download | only in sys
      1 /* Copyright (C) 2001, 2004 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, write to the Free
     16    Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
     17    02111-1307 USA.  */
     18 
     19 #ifndef _SYS_PROCFS_H
     20 #define _SYS_PROCFS_H	1
     21 
     22 /* This is somewhat modelled after the file of the same name on SVR4
     23    systems.  It provides a definition of the core file format for ELF
     24    used on Linux.  It doesn't have anything to do with the /proc file
     25    system, even though Linux has one.
     26 
     27    Anyway, the whole purpose of this file is for GDB and GDB only.
     28    Don't read too much into it.  Don't use it for anything other than
     29    GDB unless you know what you are doing.  */
     30 
     31 #include <features.h>
     32 #include <sys/time.h>
     33 #include <sys/types.h>
     34 #include <sys/user.h>
     35 
     36 __BEGIN_DECLS
     37 
     38 /* Type for a general-purpose register.  */
     39 typedef unsigned long elf_greg_t;
     40 
     41 /* And the whole bunch of them.  We could have used `struct
     42    user_regs_struct' directly in the typedef, but tradition says that
     43    the register set is an array, which does have some peculiar
     44    semantics, so leave it that way.  */
     45 #define ELF_NGREG (sizeof (struct user_regs_struct) / sizeof(elf_greg_t))
     46 typedef elf_greg_t elf_gregset_t[ELF_NGREG];
     47 
     48 #if __WORDSIZE == 32
     49 /* Register set for the floating-point registers.  */
     50 typedef struct user_fpregs_struct elf_fpregset_t;
     51 
     52 /* Register set for the extended floating-point registers.  Includes
     53    the Pentium III SSE registers in addition to the classic
     54    floating-point stuff.  */
     55 typedef struct user_fpxregs_struct elf_fpxregset_t;
     56 #else
     57 /* Register set for the extended floating-point registers.  Includes
     58    the Pentium III SSE registers in addition to the classic
     59    floating-point stuff.  */
     60 typedef struct user_fpregs_struct elf_fpregset_t;
     61 #endif
     62 
     63 /* Signal info.  */
     64 struct elf_siginfo
     65   {
     66     int si_signo;			/* Signal number.  */
     67     int si_code;			/* Extra code.  */
     68     int si_errno;			/* Errno.  */
     69   };
     70 
     71 
     72 /* Definitions to generate Intel SVR4-like core files.  These mostly
     73    have the same names as the SVR4 types with "elf_" tacked on the
     74    front to prevent clashes with Linux definitions, and the typedef
     75    forms have been avoided.  This is mostly like the SVR4 structure,
     76    but more Linuxy, with things that Linux does not support and which
     77    GDB doesn't really use excluded.  */
     78 
     79 struct elf_prstatus
     80   {
     81     struct elf_siginfo pr_info;		/* Info associated with signal.  */
     82     short int pr_cursig;		/* Current signal.  */
     83     unsigned long int pr_sigpend;	/* Set of pending signals.  */
     84     unsigned long int pr_sighold;	/* Set of held signals.  */
     85     __pid_t pr_pid;
     86     __pid_t pr_ppid;
     87     __pid_t pr_pgrp;
     88     __pid_t pr_sid;
     89     struct timeval pr_utime;		/* User time.  */
     90     struct timeval pr_stime;		/* System time.  */
     91     struct timeval pr_cutime;		/* Cumulative user time.  */
     92     struct timeval pr_cstime;		/* Cumulative system time.  */
     93     elf_gregset_t pr_reg;		/* GP registers.  */
     94     int pr_fpvalid;			/* True if math copro being used.  */
     95   };
     96 
     97 
     98 #define ELF_PRARGSZ     (80)    /* Number of chars for args.  */
     99 
    100 struct elf_prpsinfo
    101   {
    102     char pr_state;			/* Numeric process state.  */
    103     char pr_sname;			/* Char for pr_state.  */
    104     char pr_zomb;			/* Zombie.  */
    105     char pr_nice;			/* Nice val.  */
    106     unsigned long int pr_flag;		/* Flags.  */
    107 #if __WORDSIZE == 32
    108     unsigned short int pr_uid;
    109     unsigned short int pr_gid;
    110 #else
    111     unsigned int pr_uid;
    112     unsigned int pr_gid;
    113 #endif
    114     int pr_pid, pr_ppid, pr_pgrp, pr_sid;
    115     /* Lots missing */
    116     char pr_fname[16];			/* Filename of executable.  */
    117     char pr_psargs[ELF_PRARGSZ];	/* Initial part of arg list.  */
    118   };
    119 
    120 
    121 /* The rest of this file provides the types for emulation of the
    122    Solaris <proc_service.h> interfaces that should be implemented by
    123    users of libthread_db.  */
    124 
    125 /* Addresses.  */
    126 typedef void *psaddr_t;
    127 
    128 /* Register sets.  Linux has different names.  */
    129 typedef elf_gregset_t prgregset_t;
    130 typedef elf_fpregset_t prfpregset_t;
    131 
    132 /* We don't have any differences between processes and threads,
    133    therefore have only one PID type.  */
    134 typedef __pid_t lwpid_t;
    135 
    136 /* Process status and info.  In the end we do provide typedefs for them.  */
    137 typedef struct elf_prstatus prstatus_t;
    138 typedef struct elf_prpsinfo prpsinfo_t;
    139 
    140 __END_DECLS
    141 
    142 #endif	/* sys/procfs.h */
    143