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

Petr Salinger ps-guest at alioth.debian.org
Sat Feb 13 17:57:28 UTC 2010


Author: ps-guest
Date: 2010-02-13 17:57:26 +0000 (Sat, 13 Feb 2010)
New Revision: 2978

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
the 8.0 supports them as native, under 7.2 we have limited emulation



Modified: trunk/glibc-ports/kfreebsd/faccessat.c
===================================================================
--- trunk/glibc-ports/kfreebsd/faccessat.c	2010-02-13 17:45:01 UTC (rev 2977)
+++ trunk/glibc-ports/kfreebsd/faccessat.c	2010-02-13 17:57:26 UTC (rev 2978)
@@ -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	2010-02-13 17:45:01 UTC (rev 2977)
+++ trunk/glibc-ports/kfreebsd/fchmodat.c	2010-02-13 17:57:26 UTC (rev 2978)
@@ -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	2010-02-13 17:45:01 UTC (rev 2977)
+++ trunk/glibc-ports/kfreebsd/fchownat.c	2010-02-13 17:57:26 UTC (rev 2978)
@@ -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	2010-02-13 17:45:01 UTC (rev 2977)
+++ trunk/glibc-ports/kfreebsd/fexecve.c	2010-02-13 17:57:26 UTC (rev 2978)
@@ -101,4 +101,3 @@
   return -1;
 #endif
 }
-stub_warning(fexecve)

Modified: trunk/glibc-ports/kfreebsd/futimesat.c
===================================================================
--- trunk/glibc-ports/kfreebsd/futimesat.c	2010-02-13 17:45:01 UTC (rev 2977)
+++ trunk/glibc-ports/kfreebsd/futimesat.c	2010-02-13 17:57:26 UTC (rev 2978)
@@ -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	2010-02-13 17:45:01 UTC (rev 2977)
+++ trunk/glibc-ports/kfreebsd/fxstatat.c	2010-02-13 17:57:26 UTC (rev 2978)
@@ -156,4 +156,3 @@
 }
 
 libc_hidden_def (__fxstatat)
-stub_warning(fstatat)

Modified: trunk/glibc-ports/kfreebsd/fxstatat64.c
===================================================================
--- trunk/glibc-ports/kfreebsd/fxstatat64.c	2010-02-13 17:45:01 UTC (rev 2977)
+++ trunk/glibc-ports/kfreebsd/fxstatat64.c	2010-02-13 17:57:26 UTC (rev 2978)
@@ -150,4 +150,3 @@
 }
 
 libc_hidden_def (__fxstatat64)
-stub_warning(fstatat64)

Modified: trunk/glibc-ports/kfreebsd/linkat.c
===================================================================
--- trunk/glibc-ports/kfreebsd/linkat.c	2010-02-13 17:45:01 UTC (rev 2977)
+++ trunk/glibc-ports/kfreebsd/linkat.c	2010-02-13 17:57:26 UTC (rev 2978)
@@ -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	2010-02-13 17:45:01 UTC (rev 2977)
+++ trunk/glibc-ports/kfreebsd/mkdirat.c	2010-02-13 17:57:26 UTC (rev 2978)
@@ -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	2010-02-13 17:45:01 UTC (rev 2977)
+++ trunk/glibc-ports/kfreebsd/openat.c	2010-02-13 17:57:26 UTC (rev 2978)
@@ -312,5 +312,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	2010-02-13 17:45:01 UTC (rev 2977)
+++ trunk/glibc-ports/kfreebsd/readlinkat.c	2010-02-13 17:57:26 UTC (rev 2978)
@@ -128,4 +128,3 @@
 }
 
 libc_hidden_def (readlinkat)
-stub_warning(readlinkat)

Modified: trunk/glibc-ports/kfreebsd/renameat.c
===================================================================
--- trunk/glibc-ports/kfreebsd/renameat.c	2010-02-13 17:45:01 UTC (rev 2977)
+++ trunk/glibc-ports/kfreebsd/renameat.c	2010-02-13 17:57:26 UTC (rev 2978)
@@ -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	2010-02-13 17:45:01 UTC (rev 2977)
+++ trunk/glibc-ports/kfreebsd/symlinkat.c	2010-02-13 17:57:26 UTC (rev 2978)
@@ -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	2010-02-13 17:45:01 UTC (rev 2977)
+++ trunk/glibc-ports/kfreebsd/unlinkat.c	2010-02-13 17:57:26 UTC (rev 2978)
@@ -133,4 +133,3 @@
     return __unlink (file);
 #endif
 }
-stub_warning(unlinkat)

Modified: trunk/glibc-ports/kfreebsd/xmknodat.c
===================================================================
--- trunk/glibc-ports/kfreebsd/xmknodat.c	2010-02-13 17:45:01 UTC (rev 2977)
+++ trunk/glibc-ports/kfreebsd/xmknodat.c	2010-02-13 17:57:26 UTC (rev 2978)
@@ -143,4 +143,3 @@
 }
 
 libc_hidden_def (__xmknodat)
-stub_warning(xmknodat)




More information about the Glibc-bsd-commits mailing list