diff options
author | Roland McGrath <roland@gnu.org> | 2003-01-22 02:07:54 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 2003-01-22 02:07:54 +0000 |
commit | 4021f9ea0be6e6278adc7bff1018a4b849922e37 (patch) | |
tree | 5583063802417000a87f027d4419e9c2cc3e81df /sysdeps/unix/sysv | |
parent | 46086bc8960796e554dcc28ee8d3f4f4c8526dc6 (diff) | |
download | glibc-4021f9ea0be6e6278adc7bff1018a4b849922e37.tar glibc-4021f9ea0be6e6278adc7bff1018a4b849922e37.tar.gz glibc-4021f9ea0be6e6278adc7bff1018a4b849922e37.tar.bz2 glibc-4021f9ea0be6e6278adc7bff1018a4b849922e37.zip |
2003-01-21 Jakub Jelinek <jakub@redhat.com>
* sysdeps/unix/alpha/sysdep.h (inline_syscall0,
inline_syscall1, inline_syscall2, inline_syscall3,
inline_syscall4, inline_syscall5, inline_syscall6): Add __volatile__.
* sysdeps/unix/sysv/linux/alpha/sysdep.h (INTERNAL_SYSCALL): Add
__attribute__((unused)) to ChEcK.
Diffstat (limited to 'sysdeps/unix/sysv')
-rw-r--r-- | sysdeps/unix/sysv/linux/alpha/sysdep.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/alpha/sysdep.h b/sysdeps/unix/sysv/linux/alpha/sysdep.h index 6a079060c7..62e308bf5d 100644 --- a/sysdeps/unix/sysv/linux/alpha/sysdep.h +++ b/sysdeps/unix/sysv/linux/alpha/sysdep.h @@ -75,7 +75,8 @@ #undef INTERNAL_SYSCALL #define INTERNAL_SYSCALL(name, err_out, nr, args...) \ ({ \ - extern char ChEcK[__NR_##name == __NR_rt_sigaction ? -1 : 1]; \ + extern char ChEcK[__NR_##name == __NR_rt_sigaction ? -1 : 1] \ + __attribute__((unused)); \ INTERNAL_SYSCALL1(name, err_out, nr, args); \ }) |