Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJeff Johnston <jjohnstn@redhat.com>2004-06-15 00:57:07 +0400
committerJeff Johnston <jjohnstn@redhat.com>2004-06-15 00:57:07 +0400
commitbe9105991c6a83cf3eff65e5db4ff3bef04a47ca (patch)
tree9bcd2a9fe1d008280066846f4e343bb7752f4358
parent50279bcda7a6c079eaa2a1a1fd2a2c8e87299dd9 (diff)
2004-06-14 Jeff Johnston <jjohnstn@redhat.com>
* libc/sys/linux/machine/i386/syscall.h: For now, set up __syscall_return macro for systems with vsyscall.
-rw-r--r--newlib/ChangeLog5
-rw-r--r--newlib/libc/sys/linux/machine/i386/syscall.h67
2 files changed, 18 insertions, 54 deletions
diff --git a/newlib/ChangeLog b/newlib/ChangeLog
index 5c2b536e5..2c3946746 100644
--- a/newlib/ChangeLog
+++ b/newlib/ChangeLog
@@ -1,3 +1,8 @@
+2004-06-14 Jeff Johnston <jjohnstn@redhat.com>
+
+ * libc/sys/linux/machine/i386/syscall.h: For now, set up
+ __syscall_return macro for systems with vsyscall.
+
2004-06-11 Antony King <antony.king@st.com>
* libc/include/sys/_types.h: Include <sys/lock.h> and change
diff --git a/newlib/libc/sys/linux/machine/i386/syscall.h b/newlib/libc/sys/linux/machine/i386/syscall.h
index 2dbb84f55..ec9bc2402 100644
--- a/newlib/libc/sys/linux/machine/i386/syscall.h
+++ b/newlib/libc/sys/linux/machine/i386/syscall.h
@@ -24,8 +24,20 @@
* PIC uses %ebx, so we need to save it during system calls
*/
-#ifdef __syscall_return
+#ifndef __syscall_return
+/* FIXME: remove this and switch over to use vsyscall. */
+
+#define __syscall_return(type, res) \
+do { \
+ if ((unsigned long)(res) >= (unsigned long)(-125)) { \
+ errno = -(res); \
+ res = -1; \
+ } \
+ return (type) (res); \
+} while (0)
+
+#endif
#undef __inline_syscall0
#define __inline_syscall0(name,ret) \
__asm__ volatile ("int $0x80" \
@@ -136,59 +148,6 @@ __inline_syscall6(name,__res,arg1,arg2,arg3,arg4,arg5,arg6) \
__syscall_return(type,__res); \
}
-#else /* !__syscall_return */
-
-#undef _syscall0_base
-#define _syscall0_base(type,name) \
-type __libc_##name (void) \
-{ \
- return (type)syscall (__NR_##name); \
-}
-
-#undef _syscall1_base
-#define _syscall1_base(type,name,type1,arg1) \
-type __libc_##name (type1 arg1) \
-{ \
- return (type)syscall (__NR_##name, arg1); \
-}
-
-#undef _syscall2_base
-#define _syscall2_base(type,name,type1,arg1,type2,arg2) \
-type __libc_##name (type1 arg1, type2 arg2) \
-{ \
- return (type)syscall (__NR_##name, arg1, arg2); \
-}
-
-#undef _syscall3_base
-#define _syscall3_base(type,name,type1,arg1,type2,arg2,type3,arg3) \
-type __libc_##name (type1 arg1, type2 arg2, type3 arg3) \
-{ \
- return (type)syscall (__NR_##name, arg1, arg2, arg3); \
-}
-
-#undef _syscall4_base
-#define _syscall4_base(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4) \
-type __libc_##name (type1 arg1, type2 arg2, type3 arg3, type4 arg4) \
-{ \
- return (type)syscall (__NR_##name, arg1, arg2, arg3, arg4); \
-}
-
-#undef _syscall5_base
-#define _syscall5_base(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4,type5,arg5) \
-type __libc_##name (type1 arg1,type2 arg2,type3 arg3,type4 arg4,type5 arg5) \
-{ \
- return (type)syscall (__NR_##name, arg1, arg2, arg3, arg4, arg5); \
-}
-
-#undef _syscall6_base
-#define _syscall6_base(type,name,type1,arg1,type2,arg2,type3,arg3,type4,arg4,type5,arg5,type6,arg6) \
-type __libc_##name (type1 arg1,type2 arg2,type3 arg3,type4 arg4,type5 arg5,type6 arg6) \
-{ \
- return (type)syscall (__NR_##name, arg1, arg2, arg3, arg4, arg5, arg6); \
-}
-
-#endif /* !__syscall_return */
-
#undef _syscall0
#define _syscall0(type,name) \
_syscall0_base(type,name) \