[Glibc-bsd-commits] r3241 - trunk/glibc-ports/kfreebsd

Aurelien Jarno aurel32 at alioth.debian.org
Tue Jan 25 07:30:38 UTC 2011


Author: aurel32
Date: 2011-01-25 07:30:33 +0000 (Tue, 25 Jan 2011)
New Revision: 3241

Modified:
   trunk/glibc-ports/kfreebsd/faccessat.c
   trunk/glibc-ports/kfreebsd/fchmodat.c
   trunk/glibc-ports/kfreebsd/fchownat.c
   trunk/glibc-ports/kfreebsd/fexecve.c
   trunk/glibc-ports/kfreebsd/futimesat.c
   trunk/glibc-ports/kfreebsd/fxstatat.c
   trunk/glibc-ports/kfreebsd/fxstatat64.c
   trunk/glibc-ports/kfreebsd/linkat.c
   trunk/glibc-ports/kfreebsd/mkdirat.c
   trunk/glibc-ports/kfreebsd/openat.c
   trunk/glibc-ports/kfreebsd/readlinkat.c
   trunk/glibc-ports/kfreebsd/renameat.c
   trunk/glibc-ports/kfreebsd/symlinkat.c
   trunk/glibc-ports/kfreebsd/unlinkat.c
   trunk/glibc-ports/kfreebsd/xmknodat.c
Log:
Do not mark *at functions as stubs anymore as the 8.x kernek support hen
natively.



Modified: trunk/glibc-ports/kfreebsd/faccessat.c
===================================================================
--- trunk/glibc-ports/kfreebsd/faccessat.c	2011-01-22 22:53:05 UTC (rev 3240)
+++ trunk/glibc-ports/kfreebsd/faccessat.c	2011-01-25 07:30:33 UTC (rev 3241)
@@ -169,4 +169,3 @@
   __set_errno (EACCES);
   return -1;
 }
-stub_warning(faccessat)

Modified: trunk/glibc-ports/kfreebsd/fchmodat.c
===================================================================
--- trunk/glibc-ports/kfreebsd/fchmodat.c	2011-01-22 22:53:05 UTC (rev 3240)
+++ trunk/glibc-ports/kfreebsd/fchmodat.c	2011-01-25 07:30:33 UTC (rev 3241)
@@ -136,4 +136,3 @@
     return __chmod(file, mode);
 #endif
 }
-stub_warning(fchmodat)

Modified: trunk/glibc-ports/kfreebsd/fchownat.c
===================================================================
--- trunk/glibc-ports/kfreebsd/fchownat.c	2011-01-22 22:53:05 UTC (rev 3240)
+++ trunk/glibc-ports/kfreebsd/fchownat.c	2011-01-25 07:30:33 UTC (rev 3241)
@@ -135,4 +135,3 @@
     return __chown(file, owner, group);
 #endif
 }
-stub_warning(fchownat)

Modified: trunk/glibc-ports/kfreebsd/fexecve.c
===================================================================
--- trunk/glibc-ports/kfreebsd/fexecve.c	2011-01-22 22:53:05 UTC (rev 3240)
+++ trunk/glibc-ports/kfreebsd/fexecve.c	2011-01-25 07:30:33 UTC (rev 3241)
@@ -101,4 +101,3 @@
   return -1;
 #endif
 }
-stub_warning(fexecve)

Modified: trunk/glibc-ports/kfreebsd/futimesat.c
===================================================================
--- trunk/glibc-ports/kfreebsd/futimesat.c	2011-01-22 22:53:05 UTC (rev 3240)
+++ trunk/glibc-ports/kfreebsd/futimesat.c	2011-01-25 07:30:33 UTC (rev 3241)
@@ -136,4 +136,3 @@
   return __utimes(file, tvp);
 #endif
 }
-stub_warning(futimesat)

Modified: trunk/glibc-ports/kfreebsd/fxstatat.c
===================================================================
--- trunk/glibc-ports/kfreebsd/fxstatat.c	2011-01-22 22:53:05 UTC (rev 3240)
+++ trunk/glibc-ports/kfreebsd/fxstatat.c	2011-01-25 07:30:33 UTC (rev 3241)
@@ -156,4 +156,3 @@
 }
 
 libc_hidden_def (__fxstatat)
-stub_warning(fstatat)

Modified: trunk/glibc-ports/kfreebsd/fxstatat64.c
===================================================================
--- trunk/glibc-ports/kfreebsd/fxstatat64.c	2011-01-22 22:53:05 UTC (rev 3240)
+++ trunk/glibc-ports/kfreebsd/fxstatat64.c	2011-01-25 07:30:33 UTC (rev 3241)
@@ -150,4 +150,3 @@
 }
 
 libc_hidden_def (__fxstatat64)
-stub_warning(fstatat64)

Modified: trunk/glibc-ports/kfreebsd/linkat.c
===================================================================
--- trunk/glibc-ports/kfreebsd/linkat.c	2011-01-22 22:53:05 UTC (rev 3240)
+++ trunk/glibc-ports/kfreebsd/linkat.c	2011-01-25 07:30:33 UTC (rev 3241)
@@ -179,4 +179,3 @@
   return __link (from, to);
 #endif
 }
-stub_warning(linkat)

Modified: trunk/glibc-ports/kfreebsd/mkdirat.c
===================================================================
--- trunk/glibc-ports/kfreebsd/mkdirat.c	2011-01-22 22:53:05 UTC (rev 3240)
+++ trunk/glibc-ports/kfreebsd/mkdirat.c	2011-01-25 07:30:33 UTC (rev 3241)
@@ -124,4 +124,3 @@
   return __mkdir (file, mode);
 #endif
 }
-stub_warning(mkdirat)

Modified: trunk/glibc-ports/kfreebsd/openat.c
===================================================================
--- trunk/glibc-ports/kfreebsd/openat.c	2011-01-22 22:53:05 UTC (rev 3240)
+++ trunk/glibc-ports/kfreebsd/openat.c	2011-01-25 07:30:33 UTC (rev 3241)
@@ -187,5 +187,3 @@
 }
 
 strong_alias (__openat_2, __openat64_2)
-stub_warning(openat)
-stub_warning(openat64)

Modified: trunk/glibc-ports/kfreebsd/readlinkat.c
===================================================================
--- trunk/glibc-ports/kfreebsd/readlinkat.c	2011-01-22 22:53:05 UTC (rev 3240)
+++ trunk/glibc-ports/kfreebsd/readlinkat.c	2011-01-25 07:30:33 UTC (rev 3241)
@@ -128,4 +128,3 @@
 }
 
 libc_hidden_def (readlinkat)
-stub_warning(readlinkat)

Modified: trunk/glibc-ports/kfreebsd/renameat.c
===================================================================
--- trunk/glibc-ports/kfreebsd/renameat.c	2011-01-22 22:53:05 UTC (rev 3240)
+++ trunk/glibc-ports/kfreebsd/renameat.c	2011-01-25 07:30:33 UTC (rev 3241)
@@ -172,4 +172,3 @@
   return __rename (old, new);
 #endif
 }
-stub_warning(renameat)

Modified: trunk/glibc-ports/kfreebsd/symlinkat.c
===================================================================
--- trunk/glibc-ports/kfreebsd/symlinkat.c	2011-01-22 22:53:05 UTC (rev 3240)
+++ trunk/glibc-ports/kfreebsd/symlinkat.c	2011-01-25 07:30:33 UTC (rev 3241)
@@ -124,4 +124,3 @@
   return __symlink (from, to);
 #endif
 }
-stub_warning(symlinkat)

Modified: trunk/glibc-ports/kfreebsd/unlinkat.c
===================================================================
--- trunk/glibc-ports/kfreebsd/unlinkat.c	2011-01-22 22:53:05 UTC (rev 3240)
+++ trunk/glibc-ports/kfreebsd/unlinkat.c	2011-01-25 07:30:33 UTC (rev 3241)
@@ -133,4 +133,3 @@
     return __unlink (file);
 #endif
 }
-stub_warning(unlinkat)

Modified: trunk/glibc-ports/kfreebsd/xmknodat.c
===================================================================
--- trunk/glibc-ports/kfreebsd/xmknodat.c	2011-01-22 22:53:05 UTC (rev 3240)
+++ trunk/glibc-ports/kfreebsd/xmknodat.c	2011-01-25 07:30:33 UTC (rev 3241)
@@ -143,4 +143,3 @@
 }
 
 libc_hidden_def (__xmknodat)
-stub_warning(xmknodat)




More information about the Glibc-bsd-commits mailing list