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

Petr Salinger ps-guest at alioth.debian.org
Thu Sep 3 12:50:38 UTC 2009


Author: ps-guest
Date: 2009-09-03 12:50:38 +0000 (Thu, 03 Sep 2009)
New Revision: 2776

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:
put stub_warning() into *at functions



Modified: trunk/glibc-ports/kfreebsd/faccessat.c
===================================================================
--- trunk/glibc-ports/kfreebsd/faccessat.c	2009-09-03 02:42:49 UTC (rev 2775)
+++ trunk/glibc-ports/kfreebsd/faccessat.c	2009-09-03 12:50:38 UTC (rev 2776)
@@ -161,3 +161,4 @@
   __set_errno (EACCES);
   return -1;
 }
+stub_warning(faccessat)

Modified: trunk/glibc-ports/kfreebsd/fchmodat.c
===================================================================
--- trunk/glibc-ports/kfreebsd/fchmodat.c	2009-09-03 02:42:49 UTC (rev 2775)
+++ trunk/glibc-ports/kfreebsd/fchmodat.c	2009-09-03 12:50:38 UTC (rev 2776)
@@ -128,3 +128,4 @@
     return __chmod(file, mode);
 #endif
 }
+stub_warning(fchmodat)

Modified: trunk/glibc-ports/kfreebsd/fchownat.c
===================================================================
--- trunk/glibc-ports/kfreebsd/fchownat.c	2009-09-03 02:42:49 UTC (rev 2775)
+++ trunk/glibc-ports/kfreebsd/fchownat.c	2009-09-03 12:50:38 UTC (rev 2776)
@@ -127,3 +127,4 @@
     return __chown(file, owner, group);
 #endif
 }
+stub_warning(fchownat)

Modified: trunk/glibc-ports/kfreebsd/fexecve.c
===================================================================
--- trunk/glibc-ports/kfreebsd/fexecve.c	2009-09-03 02:42:49 UTC (rev 2775)
+++ trunk/glibc-ports/kfreebsd/fexecve.c	2009-09-03 12:50:38 UTC (rev 2776)
@@ -101,3 +101,4 @@
   return -1;
 #endif
 }
+stub_warning(fexecve)

Modified: trunk/glibc-ports/kfreebsd/futimesat.c
===================================================================
--- trunk/glibc-ports/kfreebsd/futimesat.c	2009-09-03 02:42:49 UTC (rev 2775)
+++ trunk/glibc-ports/kfreebsd/futimesat.c	2009-09-03 12:50:38 UTC (rev 2776)
@@ -128,3 +128,4 @@
   return __utimes(file, tvp);
 #endif
 }
+stub_warning(futimesat)

Modified: trunk/glibc-ports/kfreebsd/fxstatat.c
===================================================================
--- trunk/glibc-ports/kfreebsd/fxstatat.c	2009-09-03 02:42:49 UTC (rev 2775)
+++ trunk/glibc-ports/kfreebsd/fxstatat.c	2009-09-03 12:50:38 UTC (rev 2776)
@@ -148,3 +148,4 @@
 }
 
 libc_hidden_def (__fxstatat)
+stub_warning(fstatat)

Modified: trunk/glibc-ports/kfreebsd/fxstatat64.c
===================================================================
--- trunk/glibc-ports/kfreebsd/fxstatat64.c	2009-09-03 02:42:49 UTC (rev 2775)
+++ trunk/glibc-ports/kfreebsd/fxstatat64.c	2009-09-03 12:50:38 UTC (rev 2776)
@@ -142,3 +142,4 @@
 }
 
 libc_hidden_def (__fxstatat64)
+stub_warning(fstatat64)

Modified: trunk/glibc-ports/kfreebsd/linkat.c
===================================================================
--- trunk/glibc-ports/kfreebsd/linkat.c	2009-09-03 02:42:49 UTC (rev 2775)
+++ trunk/glibc-ports/kfreebsd/linkat.c	2009-09-03 12:50:38 UTC (rev 2776)
@@ -169,3 +169,4 @@
   return __link (from, to);
 #endif
 }
+stub_warning(linkat)

Modified: trunk/glibc-ports/kfreebsd/mkdirat.c
===================================================================
--- trunk/glibc-ports/kfreebsd/mkdirat.c	2009-09-03 02:42:49 UTC (rev 2775)
+++ trunk/glibc-ports/kfreebsd/mkdirat.c	2009-09-03 12:50:38 UTC (rev 2776)
@@ -116,3 +116,4 @@
   return __mkdir (file, mode);
 #endif
 }
+stub_warning(mkdirat)

Modified: trunk/glibc-ports/kfreebsd/openat.c
===================================================================
--- trunk/glibc-ports/kfreebsd/openat.c	2009-09-03 02:42:49 UTC (rev 2775)
+++ trunk/glibc-ports/kfreebsd/openat.c	2009-09-03 12:50:38 UTC (rev 2776)
@@ -292,3 +292,5 @@
 }
 
 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	2009-09-03 02:42:49 UTC (rev 2775)
+++ trunk/glibc-ports/kfreebsd/readlinkat.c	2009-09-03 12:50:38 UTC (rev 2776)
@@ -120,3 +120,4 @@
 }
 
 libc_hidden_def (readlinkat)
+stub_warning(readlinkat)

Modified: trunk/glibc-ports/kfreebsd/renameat.c
===================================================================
--- trunk/glibc-ports/kfreebsd/renameat.c	2009-09-03 02:42:49 UTC (rev 2775)
+++ trunk/glibc-ports/kfreebsd/renameat.c	2009-09-03 12:50:38 UTC (rev 2776)
@@ -162,3 +162,4 @@
   return __rename (old, new);
 #endif
 }
+stub_warning(renameat)

Modified: trunk/glibc-ports/kfreebsd/symlinkat.c
===================================================================
--- trunk/glibc-ports/kfreebsd/symlinkat.c	2009-09-03 02:42:49 UTC (rev 2775)
+++ trunk/glibc-ports/kfreebsd/symlinkat.c	2009-09-03 12:50:38 UTC (rev 2776)
@@ -116,3 +116,4 @@
   return __symlink (from, to);
 #endif
 }
+stub_warning(symlinkat)

Modified: trunk/glibc-ports/kfreebsd/unlinkat.c
===================================================================
--- trunk/glibc-ports/kfreebsd/unlinkat.c	2009-09-03 02:42:49 UTC (rev 2775)
+++ trunk/glibc-ports/kfreebsd/unlinkat.c	2009-09-03 12:50:38 UTC (rev 2776)
@@ -125,3 +125,4 @@
     return __unlink (file);
 #endif
 }
+stub_warning(unlinkat)

Modified: trunk/glibc-ports/kfreebsd/xmknodat.c
===================================================================
--- trunk/glibc-ports/kfreebsd/xmknodat.c	2009-09-03 02:42:49 UTC (rev 2775)
+++ trunk/glibc-ports/kfreebsd/xmknodat.c	2009-09-03 12:50:38 UTC (rev 2776)
@@ -135,3 +135,4 @@
 }
 
 libc_hidden_def (__xmknodat)
+stub_warning(xmknodat)




More information about the Glibc-bsd-commits mailing list