mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-27 07:20:11 +00:00
5a82c74822
Also, change sources.redhat.com to sourceware.org. This patch was automatically generated by running the following shell script, which uses GNU sed, and which avoids modifying files imported from upstream: sed -ri ' s,(http|ftp)(://(.*\.)?(gnu|fsf|sourceware)\.org($|[^.]|\.[^a-z])),https\2,g s,(http|ftp)(://(.*\.)?)sources\.redhat\.com($|[^.]|\.[^a-z]),https\2sourceware.org\4,g ' \ $(find $(git ls-files) -prune -type f \ ! -name '*.po' \ ! -name 'ChangeLog*' \ ! -path COPYING ! -path COPYING.LIB \ ! -path manual/fdl-1.3.texi ! -path manual/lgpl-2.1.texi \ ! -path manual/texinfo.tex ! -path scripts/config.guess \ ! -path scripts/config.sub ! -path scripts/install-sh \ ! -path scripts/mkinstalldirs ! -path scripts/move-if-change \ ! -path INSTALL ! -path locale/programs/charmap-kw.h \ ! -path po/libc.pot ! -path sysdeps/gnu/errlist.c \ ! '(' -name configure \ -execdir test -f configure.ac -o -f configure.in ';' ')' \ ! '(' -name preconfigure \ -execdir test -f preconfigure.ac ';' ')' \ -print) and then by running 'make dist-prepare' to regenerate files built from the altered files, and then executing the following to cleanup: chmod a+x sysdeps/unix/sysv/linux/riscv/configure # Omit irrelevant whitespace and comment-only changes, # perhaps from a slightly-different Autoconf version. git checkout -f \ sysdeps/csky/configure \ sysdeps/hppa/configure \ sysdeps/riscv/configure \ sysdeps/unix/sysv/linux/csky/configure # Omit changes that caused a pre-commit check to fail like this: # remote: *** error: sysdeps/powerpc/powerpc64/ppc-mcount.S: trailing lines git checkout -f \ sysdeps/powerpc/powerpc64/ppc-mcount.S \ sysdeps/unix/sysv/linux/s390/s390-64/syscall.S # Omit change that caused a pre-commit check to fail like this: # remote: *** error: sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: last line does not end in newline git checkout -f sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S
89 lines
2.8 KiB
C
89 lines
2.8 KiB
C
/* Extra sys/procfs.h definitions. SPARC version.
|
|
Copyright (C) 1996-2019 Free Software Foundation, Inc.
|
|
This file is part of the GNU C Library.
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
|
modify it under the terms of the GNU Lesser General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2.1 of the License, or (at your option) any later version.
|
|
|
|
The GNU C Library is distributed in the hope that it will be useful,
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
License along with the GNU C Library; if not, see
|
|
<https://www.gnu.org/licenses/>. */
|
|
|
|
#ifndef _SYS_PROCFS_H
|
|
# error "Never include <bits/procfs-extra.h> directly; use <sys/procfs.h> instead."
|
|
#endif
|
|
|
|
#if __WORDSIZE == 64
|
|
|
|
/* Provide 32-bit variants so that BFD can read 32-bit
|
|
core files. */
|
|
#define ELF_NGREG32 38
|
|
typedef struct
|
|
{
|
|
union
|
|
{
|
|
unsigned int pr_regs[32];
|
|
double pr_dregs[16];
|
|
} pr_fr;
|
|
unsigned int __glibc_reserved;
|
|
unsigned int pr_fsr;
|
|
unsigned char pr_qcnt;
|
|
unsigned char pr_q_entrysize;
|
|
unsigned char pr_en;
|
|
unsigned int pr_q[64];
|
|
} elf_fpregset_t32;
|
|
|
|
typedef unsigned int elf_greg_t32;
|
|
typedef elf_greg_t32 elf_gregset_t32[ELF_NGREG32];
|
|
|
|
struct elf_prstatus32
|
|
{
|
|
struct elf_siginfo pr_info; /* Info associated with signal. */
|
|
short int pr_cursig; /* Current signal. */
|
|
unsigned int pr_sigpend; /* Set of pending signals. */
|
|
unsigned int pr_sighold; /* Set of held signals. */
|
|
__pid_t pr_pid;
|
|
__pid_t pr_ppid;
|
|
__pid_t pr_pgrp;
|
|
__pid_t pr_sid;
|
|
struct
|
|
{
|
|
int tv_sec, tv_usec;
|
|
} pr_utime, /* User time. */
|
|
pr_stime, /* System time. */
|
|
pr_cutime, /* Cumulative user time. */
|
|
pr_cstime; /* Cumulative system time. */
|
|
elf_gregset_t32 pr_reg; /* GP registers. */
|
|
int pr_fpvalid; /* True if math copro being used. */
|
|
};
|
|
|
|
struct elf_prpsinfo32
|
|
{
|
|
char pr_state; /* Numeric process state. */
|
|
char pr_sname; /* Char for pr_state. */
|
|
char pr_zomb; /* Zombie. */
|
|
char pr_nice; /* Nice val. */
|
|
unsigned int pr_flag; /* Flags. */
|
|
unsigned short int pr_uid;
|
|
unsigned short int pr_gid;
|
|
int pr_pid, pr_ppid, pr_pgrp, pr_sid;
|
|
/* Lots missing */
|
|
char pr_fname[16]; /* Filename of executable. */
|
|
char pr_psargs[ELF_PRARGSZ]; /* Initial part of arg list. */
|
|
};
|
|
|
|
typedef elf_gregset_t32 prgregset32_t;
|
|
typedef elf_fpregset_t32 prfpregset32_t;
|
|
|
|
typedef struct elf_prstatus32 prstatus32_t;
|
|
typedef struct elf_prpsinfo32 prpsinfo32_t;
|
|
|
|
#endif /* sparc64 */
|