diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-03-26 20:35:45 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-03-26 20:35:45 +0000 |
commit | c7e41631b203863e5efe280446e553bbe231c549 (patch) | |
tree | 9414c9ea655e5837c86a7fc23b56c4f26d50fd75 /sysdeps | |
parent | 6d2e234a786ceb96b8daf68995bb8cc2a4478225 (diff) | |
download | glibc-c7e41631b203863e5efe280446e553bbe231c549.tar.gz glibc-c7e41631b203863e5efe280446e553bbe231c549.tar.xz glibc-c7e41631b203863e5efe280446e553bbe231c549.zip |
Update.
2000-03-20 Richard Henderson <rth@cygnus.com> * nis/nss_nis/nis-service.c (_nss_nis_getservbyport_r): Last argument to yperr2nss is an int, not size_t. * posix/regex.c (print_partial_compiled_pattern): Cast all ptrdiff_t to long for printing. (print_compiled_pattern): Use Z for printing size_t. * posix/testfnm.c (tests): Avoid trigraphs. * sysdeps/alpha/dl-machine.h (ELF_MACHINE_RUNTIME_TRAMPOLINE): Use a C comment, not an assembly comment. * sysdeps/unix/sysv/linux/alpha/msgctl.c: Clarify use of __ASSUME_32BITUIDS.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/alpha/dl-machine.h | 4 | ||||
-rw-r--r-- | sysdeps/unix/sysv/linux/alpha/msgctl.c | 3 |
2 files changed, 5 insertions, 2 deletions
diff --git a/sysdeps/alpha/dl-machine.h b/sysdeps/alpha/dl-machine.h index 78a6f502ed..d0b5c485ea 100644 --- a/sysdeps/alpha/dl-machine.h +++ b/sysdeps/alpha/dl-machine.h @@ -1,5 +1,5 @@ /* Machine-dependent ELF dynamic relocation inline functions. Alpha version. - Copyright (C) 1996, 1997, 1998, 1999 Free Software Foundation, Inc. + Copyright (C) 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc. This file is part of the GNU C Library. Contributed by Richard Henderson <rth@tamu.edu>. @@ -254,7 +254,7 @@ elf_machine_runtime_setup (struct link_map *l, int lazy, int profile) #ifndef PROF #define ELF_MACHINE_RUNTIME_TRAMPOLINE \ TRAMPOLINE_TEMPLATE (_dl_runtime_resolve, fixup, imb); \ - TRAMPOLINE_TEMPLATE (_dl_runtime_profile, profile_fixup, #nop); + TRAMPOLINE_TEMPLATE (_dl_runtime_profile, profile_fixup, /* nop */); #else #define ELF_MACHINE_RUNTIME_TRAMPOLINE \ TRAMPOLINE_TEMPLATE (_dl_runtime_resolve, fixup, imb); \ diff --git a/sysdeps/unix/sysv/linux/alpha/msgctl.c b/sysdeps/unix/sysv/linux/alpha/msgctl.c index 2d07b1f400..93a9bf2618 100644 --- a/sysdeps/unix/sysv/linux/alpha/msgctl.c +++ b/sysdeps/unix/sysv/linux/alpha/msgctl.c @@ -51,6 +51,9 @@ int __new_msgctl (int, int, struct msqid_ds *); int __new_msgctl (int msqid, int cmd, struct msqid_ds *buf) { + /* This is a misnomer -- Alpha had 32-bit uids at the beginning + of time. However, msg_qnum and msg_qbytes changed size at + the same time the size of uid changed elsewhere. */ #if __ASSUME_32BITUIDS > 0 return INLINE_SYSCALL (msgctl, 3, msqid, cmd | __IPC_64, buf); #else |