1 /* 2 * Copyright (C) 2016 Andes Technology, Inc. 3 * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. 4 */ 5 6 /* Copyright (C) 1996, 1997, 1999, 2001 Free Software Foundation, Inc. 7 8 The GNU C Library is free software; you can redistribute it and/or 9 modify it under the terms of the GNU Lesser General Public 10 License as published by the Free Software Foundation; either 11 version 2.1 of the License, or (at your option) any later version. 12 13 The GNU C Library is distributed in the hope that it will be useful, 14 but WITHOUT ANY WARRANTY; without even the implied warranty of 15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 16 Lesser General Public License for more details. 17 18 You should have received a copy of the GNU Lesser General Public 19 License along with the GNU C Library; if not, write to the Free 20 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 21 02111-1307 USA. */ 22 23 #ifndef _SYS_PROCFS_H 24 #define _SYS_PROCFS_H 1 25 26 /* This is somewhat modelled after the file of the same name on SVR4 27 systems. It provides a definition of the core file format for ELF 28 used on Linux. It doesn't have anything to do with the /proc file 29 system, even though Linux has one. 30 31 Anyway, the whole purpose of this file is for GDB and GDB only. 32 Don't read too much into it. Don't use it for anything other than 33 GDB unless you know what you are doing. */ 34 35 #include <features.h> 36 #include <sys/time.h> 37 #include <sys/types.h> 38 #include <sys/user.h> 39 40 __BEGIN_DECLS 41 42 /* Type for a general-purpose register. */ 43 typedef unsigned long elf_greg_t; 44 45 /* And the whole bunch of them. We could have used `struct 46 user_regs' directly in the typedef, but tradition says that 47 the register set is an array, which does have some peculiar 48 semantics, so leave it that way. */ 49 #define ELF_NGREG (sizeof (struct user_regs) / sizeof(elf_greg_t)) 50 typedef elf_greg_t elf_gregset_t[ELF_NGREG]; 51 52 /* Register set for the floating-point registers. */ 53 typedef struct user_fpregs elf_fpregset_t; 54 55 /* Signal info. */ 56 struct elf_siginfo 57 { 58 int si_signo; /* Signal number. */ 59 int si_code; /* Extra code. */ 60 int si_errno; /* Errno. */ 61 }; 62 63 /* Definitions to generate Intel SVR4-like core files. These mostly 64 have the same names as the SVR4 types with "elf_" tacked on the 65 front to prevent clashes with Linux definitions, and the typedef 66 forms have been avoided. This is mostly like the SVR4 structure, 67 but more Linuxy, with things that Linux does not support and which 68 GDB doesn't really use excluded. */ 69 70 struct elf_prstatus 71 { 72 struct elf_siginfo pr_info; /* Info associated with signal. */ 73 short int pr_cursig; /* Current signal. */ 74 unsigned long int pr_sigpend; /* Set of pending signals. */ 75 unsigned long int pr_sighold; /* Set of held signals. */ 76 __pid_t pr_pid; 77 __pid_t pr_ppid; 78 __pid_t pr_pgrp; 79 __pid_t pr_sid; 80 struct timeval pr_utime; /* User time. */ 81 struct timeval pr_stime; /* System time. */ 82 struct timeval pr_cutime; /* Cumulative user time. */ 83 struct timeval pr_cstime; /* Cumulative system time. */ 84 elf_gregset_t pr_reg; /* GP registers. */ 85 int pr_fpvalid; /* True if math copro being used. */ 86 }; 87 88 89 #define ELF_PRARGSZ (80) /* Number of chars for args. */ 90 91 struct elf_prpsinfo 92 { 93 char pr_state; /* Numeric process state. */ 94 char pr_sname; /* Char for pr_state. */ 95 char pr_zomb; /* Zombie. */ 96 char pr_nice; /* Nice val. */ 97 unsigned long int pr_flag; /* Flags. */ 98 unsigned short int pr_uid; 99 unsigned short int pr_gid; 100 int pr_pid, pr_ppid, pr_pgrp, pr_sid; 101 /* Lots missing */ 102 char pr_fname[16]; /* Filename of executable. */ 103 char pr_psargs[ELF_PRARGSZ]; /* Initial part of arg list. */ 104 }; 105 106 /* The rest of this file provides the types for emulation of the 107 Solaris <proc_service.h> interfaces that should be implemented by 108 users of libthread_db. */ 109 110 /* Addresses. */ 111 typedef void *psaddr_t; 112 113 /* Register sets. Linux has different names. */ 114 typedef elf_gregset_t prgregset_t; 115 typedef elf_fpregset_t prfpregset_t; 116 117 /* We don't have any differences between processes and threads, 118 therefore have only one PID type. */ 119 typedef __pid_t lwpid_t; 120 121 /* Process status and info. In the end we do provide typedefs for them. */ 122 typedef struct elf_prstatus prstatus_t; 123 typedef struct elf_prpsinfo prpsinfo_t; 124 125 __END_DECLS 126 127 #endif /* sys/procfs.h */ 128