]> Git Repo - uclibc-ng.git/commitdiff
wrapsyscall.c: add cancellable fcntl64
authorPeter S. Mazinger <[email protected]>
Sat, 23 Apr 2011 17:35:19 +0000 (19:35 +0200)
committerBernhard Reutner-Fischer <[email protected]>
Fri, 15 Jun 2012 12:00:42 +0000 (14:00 +0200)
Signed-off-by: Peter S. Mazinger <[email protected]>
Signed-off-by: Bernhard Reutner-Fischer <[email protected]>
libpthread/linuxthreads.old/wrapsyscall.c

index e419e54f0e817a2e08a7ba39a07297ae3a88b6fa..790cc200acdfb22af525f23622d8701af0590a9c 100644 (file)
@@ -81,6 +81,12 @@ CANCELABLE_SYSCALL (int, close, (int fd), (fd))
 CANCELABLE_SYSCALL_VA (int, fcntl, (int fd, int cmd, ...),
                       (fd, cmd, va_arg (ap, long int)), cmd)
 
+#ifdef __UCLIBC_HAS_LFS__
+/* fcntl64(2).  */
+CANCELABLE_SYSCALL_VA (int, fcntl64, (int fd, int cmd, ...),
+                      (fd, cmd, va_arg (ap, long int)), cmd)
+#endif
+
 
 /* fsync(2).  */
 CANCELABLE_SYSCALL (int, fsync, (int fd), (fd))
This page took 0.029106 seconds and 4 git commands to generate.