diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-11-02 16:04:00 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-11-02 16:04:00 +0000 |
commit | 03fc7ab6ed4bc2f71964a3d31ad578821256b6bc (patch) | |
tree | c37b35125e60935a79ee0831af8902534f087a45 /sysdeps/unix/sysv/linux/mips/sys | |
parent | ecda4bdaa1835e9a7865667690e3e264c25085e6 (diff) | |
download | glibc-03fc7ab6ed4bc2f71964a3d31ad578821256b6bc.tar.gz glibc-03fc7ab6ed4bc2f71964a3d31ad578821256b6bc.tar.xz glibc-03fc7ab6ed4bc2f71964a3d31ad578821256b6bc.zip |
Update.
* sysdeps/unix/sysv/linux/alpha/sys/procfs.h: Add more pr* types used by the debugger. * sysdeps/unix/sysv/linux/arm/sys/procfs.h: Likewise. * sysdeps/unix/sysv/linux/i386/sys/procfs.h: Likewise. * sysdeps/unix/sysv/linux/mips/sys/procfs.h: Likewise. * sysdeps/unix/sysv/linux/powerpc/sys/procfs.h: Likewise. * sysdeps/unix/sysv/linux/sys/procfs.h: Likewise. 1999-11-01 Ulrich Drepper <drepper@cygnus.com>
Diffstat (limited to 'sysdeps/unix/sysv/linux/mips/sys')
-rw-r--r-- | sysdeps/unix/sysv/linux/mips/sys/procfs.h | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/mips/sys/procfs.h b/sysdeps/unix/sysv/linux/mips/sys/procfs.h index c97836f6e9..5a94de0de5 100644 --- a/sysdeps/unix/sysv/linux/mips/sys/procfs.h +++ b/sysdeps/unix/sysv/linux/mips/sys/procfs.h @@ -1,4 +1,4 @@ -/* Copyright (C) 1996, 1997 Free Software Foundation, Inc. +/* Copyright (C) 1996, 1997, 1999 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 @@ -101,6 +101,18 @@ struct elf_prpsinfo }; +/* Addresses. */ +typedef void *psaddr_t; + +/* Register sets. Linux has different names. */ +typedef gregset_t prgregset_t; +typedef fpregset_t prfpregset_t; + +/* We don't have any differences between processes and threads, + therefore habe only ine PID type. */ +typedef __pid_t lwpid_t; + + typedef struct elf_prstatus prstatus_t; typedef struct elf_prpsinfo prpsinfo_t; |