diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-04-22 07:19:25 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-04-22 07:19:25 +0000 |
commit | ef52edfc6b25c28406e13f6a0d9cc026b1a0e991 (patch) | |
tree | 9227d317d4446bb64e871bbc1d8d617e9ca6fcb5 /sysdeps/unix/sysv/linux/alpha | |
parent | 3566d33c12be61e6de64b3d957ed3cd7520779f8 (diff) | |
download | glibc-ef52edfc6b25c28406e13f6a0d9cc026b1a0e991.tar.gz glibc-ef52edfc6b25c28406e13f6a0d9cc026b1a0e991.tar.xz glibc-ef52edfc6b25c28406e13f6a0d9cc026b1a0e991.zip |
Update.
2000-04-22 Ulrich Drepper <drepper@redhat.com> * assert/assert-perr.c: Include <stdlib.h> for abort prototype. * libio/ftello.c: Likewise. * libio/ftello64.c: Likewise. * libio/ioftell.c: Likewise. * sysdeps/generic/memrchr.c: Likewise. * sysdeps/posix/libc_fatal.c: Likewise. * sysdeps/unix/sysv/linux/init-first.c: Likewise. * misc/fstab.c: Include <string.h> for strcmp prototype. * sysdeps/generic/ldsodefs.h: Likewise. * sysdeps/unix/sysv/linux/i386/sigaction.c: Likewise. Patch by Kurt Roeckx <Q@ping.be>. * nss/Makefile (libnss_db-dbs): Renamed from libnss_db-routines. Remove db-open. Change all uses. (libnss_db-routines): Define as $(libnss_db-dbs) db-open. 2000-04-21 Jakub Jelinek <jakub@redhat.com> * sysdeps/unix/sysv/linux/alpha/msgctl.c (__syscall_msgctl): Declare. * sysdeps/unix/sysv/linux/alpha/semctl.c (__syscall_semctl): Declare. * sysdeps/unix/sysv/linux/alpha/shmctl.c (__syscall_shmctl): Declare. * sysdeps/unix/sysv/linux/alpha/getrusage.S: Surround uses of $f28 with .set noat/at to shut up warnings. * sysdeps/unix/sysv/linux/alpha/syscalls.list (__fstatfs64): Add alias. * sysdeps/unix/sysv/linux/alpha/ioperm.c (init_iosys): Allow compilation if __NR_pciconfig_iobase is not defined. * sysdeps/unix/sysv/linux/sparc/sparc64/syscalls.list (__fstatfs64): Add alias.
Diffstat (limited to 'sysdeps/unix/sysv/linux/alpha')
-rw-r--r-- | sysdeps/unix/sysv/linux/alpha/getrusage.S | 4 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/alpha/ioperm.c | 2 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/alpha/msgctl.c | 2 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/alpha/semctl.c | 1 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/alpha/shmctl.c | 2 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/alpha/syscalls.list | 2 |
6 files changed, 12 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/alpha/getrusage.S b/sysdeps/unix/sysv/linux/alpha/getrusage.S index 0c7fb1abbd..8d96455ae1 100644 --- a/sysdeps/unix/sysv/linux/alpha/getrusage.S +++ b/sysdeps/unix/sysv/linux/alpha/getrusage.S @@ -99,7 +99,9 @@ $do32: ldi v0, SYS_ify(osf_getrusage) ldt $f25, 96(a1) # ru_msgrcv ldt $f26, 104(a1) # ru_nsignals ldt $f27, 112(a1) # ru_nvcsw + .set noat ldt $f28, 120(a1) # ru_nivcsw + .set at stq t0, 0(a1) stq t1, 8(a1) stq t2, 16(a1) @@ -117,7 +119,9 @@ $do32: ldi v0, SYS_ify(osf_getrusage) stt $f25, 112(a1) stt $f26, 120(a1) stt $f27, 128(a1) + .set noat stt $f28, 136(a1) + .set at addq sp, 16, sp ret diff --git a/sysdeps/unix/sysv/linux/alpha/ioperm.c b/sysdeps/unix/sysv/linux/alpha/ioperm.c index 310930bc21..98f7163053 100644 --- a/sysdeps/unix/sysv/linux/alpha/ioperm.c +++ b/sysdeps/unix/sysv/linux/alpha/ioperm.c @@ -537,6 +537,7 @@ init_iosys (void) /* First try the pciconfig_iobase syscall added to 2.2.15 and 2.3.99. */ +#ifdef __NR_pciconfig_iobase addr = __pciconfig_iobase (IOBASE_DENSE_MEM, 0, 0); if (addr != -1) { @@ -578,6 +579,7 @@ init_iosys (void) return 0; } +#endif /* Second, collect the contents of /etc/alpha_systype or /proc/cpuinfo. */ diff --git a/sysdeps/unix/sysv/linux/alpha/msgctl.c b/sysdeps/unix/sysv/linux/alpha/msgctl.c index 693b4d4c2d..709b5c0315 100644 --- a/sysdeps/unix/sysv/linux/alpha/msgctl.c +++ b/sysdeps/unix/sysv/linux/alpha/msgctl.c @@ -44,6 +44,8 @@ struct __old_msqid_ds __ipc_pid_t msg_lrpid; /* pid of last msgrcv() */ }; +extern int __syscall_msgctl (int, int, void *); + /* Allows to control internal state and destruction of message queue objects. */ int __new_msgctl (int, int, struct msqid_ds *); diff --git a/sysdeps/unix/sysv/linux/alpha/semctl.c b/sysdeps/unix/sysv/linux/alpha/semctl.c index a4534744d3..4be4fb201a 100644 --- a/sysdeps/unix/sysv/linux/alpha/semctl.c +++ b/sysdeps/unix/sysv/linux/alpha/semctl.c @@ -49,6 +49,7 @@ union semun struct seminfo *__buf; /* buffer for IPC_INFO */ }; +extern int __syscall_semctl (int, int, int, void *); /* Return identifier for array of NSEMS semaphores associated with KEY. */ diff --git a/sysdeps/unix/sysv/linux/alpha/shmctl.c b/sysdeps/unix/sysv/linux/alpha/shmctl.c index ebda160d32..70c420dccb 100644 --- a/sysdeps/unix/sysv/linux/alpha/shmctl.c +++ b/sysdeps/unix/sysv/linux/alpha/shmctl.c @@ -52,6 +52,8 @@ struct __old_shminfo int shmall; }; +extern int __syscall_shmctl (int, int, void *); + /* Provide operations to control over shared memory segments. */ int __new_shmctl (int, int, struct shmid_ds *); diff --git a/sysdeps/unix/sysv/linux/alpha/syscalls.list b/sysdeps/unix/sysv/linux/alpha/syscalls.list index 617b6f54ae..d845761a98 100644 --- a/sysdeps/unix/sysv/linux/alpha/syscalls.list +++ b/sysdeps/unix/sysv/linux/alpha/syscalls.list @@ -22,7 +22,7 @@ mmap - mmap 6 __mmap mmap __mmap64 mmap64 llseek EXTRA lseek 3 __libc_lseek64 __llseek llseek __lseek64 lseek64 pread - pread 4 __libc_pread __libc_pread64 __pread pread __pread64 pread64 pwrite - pwrite 4 __libc_pwrite __libc_pwrite64 __pwrite pwrite __pwrite64 pwrite64 -fstatfs - fstatfs 2 __fstatfs fstatfs fstatfs64 +fstatfs - fstatfs 2 __fstatfs fstatfs __fstatfs64 fstatfs64 statfs - statfs 2 __statfs statfs statfs64 getrlimit - getrlimit 2 __getrlimit getrlimit getrlimit64 setrlimit - setrlimit 2 setrlimit setrlimit64 |