From b83c05cb3ea2c2421cbd921b3ff78e74071a5424 Mon Sep 17 00:00:00 2001 From: David McCullough Date: Mon, 29 Jan 2001 15:24:57 +0000 Subject: uClinux 2.0 doesn't have the poll system call, just check for the definition before using it. --- libc/sysdeps/linux/common/syscalls.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'libc/sysdeps') 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 _syscall3(int, poll, struct pollfd *, fds, unsigned long int, nfds, int, timeout); #endif -- cgit v1.2.3