diff options
author | David McCullough <davidm@snapgear.com> | 2001-01-29 15:24:57 +0000 |
---|---|---|
committer | David McCullough <davidm@snapgear.com> | 2001-01-29 15:24:57 +0000 |
commit | b83c05cb3ea2c2421cbd921b3ff78e74071a5424 (patch) | |
tree | b1a27b0c315b8e81bc3923c0e86114dda5a71220 | |
parent | 84d08a9a0e501241f6a1fa8505a3a61a9c214001 (diff) |
uClinux 2.0 doesn't have the poll system call, just check for the
definition before using it.
-rw-r--r-- | libc/sysdeps/linux/common/syscalls.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/common/syscalls.c b/libc/sysdeps/linux/common/syscalls.c index 0a452e55f..4312ee535 100644 --- a/libc/sysdeps/linux/common/syscalls.c +++ b/libc/sysdeps/linux/common/syscalls.c @@ -1003,7 +1003,7 @@ _syscall4(__ptr_t, mremap, __ptr_t, old_address, size_t, old_size, size_t, #endif //#define __NR_poll 168 -#ifdef L_poll +#if defined(L_poll) && defined(__NR_poll) /* uClinux 2.0 doesn't have poll */ #include <sys/poll.h> _syscall3(int, poll, struct pollfd *, fds, unsigned long int, nfds, int, timeout); #endif |