about summary refs log tree commit diff
path: root/sysdeps/unix/sysv/linux/alpha
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2003-01-22 02:07:54 +0000
committerRoland McGrath <roland@gnu.org>2003-01-22 02:07:54 +0000
commit4021f9ea0be6e6278adc7bff1018a4b849922e37 (patch)
tree5583063802417000a87f027d4419e9c2cc3e81df /sysdeps/unix/sysv/linux/alpha
parent46086bc8960796e554dcc28ee8d3f4f4c8526dc6 (diff)
downloadglibc-4021f9ea0be6e6278adc7bff1018a4b849922e37.tar.gz
glibc-4021f9ea0be6e6278adc7bff1018a4b849922e37.tar.xz
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/linux/alpha')
-rw-r--r--sysdeps/unix/sysv/linux/alpha/sysdep.h3
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);			\
 })