svn commit: branches/uClibc-nptl/include

sjhill at uclibc.org sjhill at uclibc.org
Mon Aug 21 04:32:55 UTC 2006


Author: sjhill
Date: 2006-08-20 21:32:55 -0700 (Sun, 20 Aug 2006)
New Revision: 15872

Log:
More NPTL stuff.


Modified:
   branches/uClibc-nptl/include/fcntl.h


Changeset:
Modified: branches/uClibc-nptl/include/fcntl.h
===================================================================
--- branches/uClibc-nptl/include/fcntl.h	2006-08-21 04:31:57 UTC (rev 15871)
+++ branches/uClibc-nptl/include/fcntl.h	2006-08-21 04:32:55 UTC (rev 15872)
@@ -70,18 +70,10 @@
 
    This function is a cancellation point and therefore not marked with
    __THROW.  */
-#ifndef __USE_FILE_OFFSET64
 extern int fcntl (int __fd, int __cmd, ...);
-#else
-# ifdef __REDIRECT
-extern int __REDIRECT (fcntl, (int __fd, int __cmd, ...), fcntl64);
-# else
-#  define fcntl fcntl64
-# endif
+#ifdef __UCLIBC_HAS_THREADS_NATIVE__
+extern int __fcntl_nocancel (int fd, int cmd, ...);
 #endif
-#ifdef __USE_LARGEFILE64
-extern int fcntl64 (int __fd, int __cmd, ...);
-#endif
 
 /* Open FILE and return a new file descriptor for it, or -1 on error.
    OFLAG determines the type of access used.  If O_CREAT is on OFLAG,




More information about the uClibc-cvs mailing list