Clean up mkstemp64/mkostemp64 for O_LARGEFILE==0.
authorRoland McGrath <roland@hack.frob.com>
Wed, 1 Aug 2012 17:42:38 +0000 (10:42 -0700)
committerRoland McGrath <roland@hack.frob.com>
Wed, 1 Aug 2012 17:42:38 +0000 (10:42 -0700)
13 files changed:
ChangeLog
misc/mkostemp.c
misc/mkostemp64.c
misc/mkstemp.c
misc/mkstemp64.c
sysdeps/unix/sysv/linux/x86_64/x32/mkostemp.c [deleted file]
sysdeps/unix/sysv/linux/x86_64/x32/mkostemp64.c [deleted file]
sysdeps/unix/sysv/linux/x86_64/x32/mkstemp.c [deleted file]
sysdeps/unix/sysv/linux/x86_64/x32/mkstemp64.c [deleted file]
sysdeps/wordsize-64/mkostemp.c [deleted file]
sysdeps/wordsize-64/mkostemp64.c [deleted file]
sysdeps/wordsize-64/mkstemp.c [deleted file]
sysdeps/wordsize-64/mkstemp64.c [deleted file]

index cacc65c..63a3520 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,5 +1,21 @@
 2012-08-01  Roland McGrath  <roland@hack.frob.com>
 
+       * misc/mkstemp.c [!defined O_LARGEFILE || O_LARGEFILE == 0]:
+       Define mkstemp64 as an alias.
+       * misc/mkostemp.c [!defined O_LARGEFILE || O_LARGEFILE == 0]:
+       Define mkostemp64 as an alias.
+       * misc/mkstemp64.c [defined O_LARGEFILE && O_LARGEFILE != 0]:
+       Conditionalize body on this.
+       * misc/mkostemp64.c: Likewise.
+       * sysdeps/wordsize-64/mkstemp64.c: File removed.
+       * sysdeps/wordsize-64/mkostemp64.c: File removed.
+       * sysdeps/wordsize-64/mkostemp.c: File removed.
+       * sysdeps/wordsize-64/mkstemp.c: File removed.
+       * sysdeps/unix/sysv/linux/x86_64/x32/mkstemp64.c: File removed.
+       * sysdeps/unix/sysv/linux/x86_64/x32/mkostemp64.c: File removed.
+       * sysdeps/unix/sysv/linux/x86_64/x32/mkostemp.c: File removed.
+       * sysdeps/unix/sysv/linux/x86_64/x32/mkstemp.c: File removed.
+
        [BZ #14138]
        * sysdeps/unix/sysv/linux/syscalls.list: Add getrlimit/ugetrlimit line.
        * sysdeps/unix/sysv/linux/i386/getrlimit.c: File removed.
index b78554b..2c5b272 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1998, 1999, 2001, 2007, 2009 Free Software Foundation, Inc.
+/* Copyright (C) 1998-2012 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -33,3 +33,7 @@ mkostemp (template, flags)
 {
   return __gen_tempname (template, 0, flags, __GT_FILE);
 }
+
+#if !defined O_LARGEFILE || O_LARGEFILE == 0
+weak_alias (mkostemp, mkostemp64)
+#endif
index b7a803a..104e6d9 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 2000, 2007, 2009 Free Software Foundation, Inc.
+/* Copyright (C) 2000-2012 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -19,6 +19,9 @@
 #include <stdio.h>
 #include <stdlib.h>
 
+/* If O_LARGEFILE is zero, mkostemp.c defines mkostemp64 as an alias.  */
+#if defined O_LARGEFILE && O_LARGEFILE != 0
+
 /* Generate a unique temporary file name from TEMPLATE.
    The last six characters of TEMPLATE must be "XXXXXX";
    they are replaced with a string that makes the filename unique.
@@ -30,3 +33,5 @@ mkostemp64 (template, flags)
 {
   return __gen_tempname (template, 0, flags | O_LARGEFILE, __GT_FILE);
 }
+
+#endif
index c03516b..c10bdd9 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 1998, 1999, 2001, 2007, 2009 Free Software Foundation, Inc.
+/* Copyright (C) 1998-2012 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -32,3 +32,7 @@ mkstemp (template)
 {
   return __gen_tempname (template, 0, 0, __GT_FILE);
 }
+
+#if !defined O_LARGEFILE || O_LARGEFILE == 0
+weak_alias (mkstemp, mkstemp64)
+#endif
index ba4a6e2..3667c4b 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 2000, 2007, 2009 Free Software Foundation, Inc.
+/* Copyright (C) 2000-2012 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -19,6 +19,9 @@
 #include <stdio.h>
 #include <stdlib.h>
 
+/* If O_LARGEFILE is zero, mkstemp.c defines mkstemp64 as an alias.  */
+#if defined O_LARGEFILE && O_LARGEFILE != 0
+
 /* Generate a unique temporary file name from TEMPLATE.
    The last six characters of TEMPLATE must be "XXXXXX";
    they are replaced with a string that makes the filename unique.
@@ -29,3 +32,5 @@ mkstemp64 (template)
 {
   return __gen_tempname (template, 0, O_LARGEFILE, __GT_FILE);
 }
+
+#endif
diff --git a/sysdeps/unix/sysv/linux/x86_64/x32/mkostemp.c b/sysdeps/unix/sysv/linux/x86_64/x32/mkostemp.c
deleted file mode 100644 (file)
index 177f68a..0000000
+++ /dev/null
@@ -1 +0,0 @@
-#include <sysdeps/wordsize-64/mkostemp.c>
diff --git a/sysdeps/unix/sysv/linux/x86_64/x32/mkostemp64.c b/sysdeps/unix/sysv/linux/x86_64/x32/mkostemp64.c
deleted file mode 100644 (file)
index 68455a8..0000000
+++ /dev/null
@@ -1 +0,0 @@
-#include <sysdeps/wordsize-64/mkostemp64.c>
diff --git a/sysdeps/unix/sysv/linux/x86_64/x32/mkstemp.c b/sysdeps/unix/sysv/linux/x86_64/x32/mkstemp.c
deleted file mode 100644 (file)
index 4bc129b..0000000
+++ /dev/null
@@ -1 +0,0 @@
-#include <sysdeps/wordsize-64/mkstemp.c>
diff --git a/sysdeps/unix/sysv/linux/x86_64/x32/mkstemp64.c b/sysdeps/unix/sysv/linux/x86_64/x32/mkstemp64.c
deleted file mode 100644 (file)
index 76a8363..0000000
+++ /dev/null
@@ -1 +0,0 @@
-#include <sysdeps/wordsize-64/mkstemp64.c>
diff --git a/sysdeps/wordsize-64/mkostemp.c b/sysdeps/wordsize-64/mkostemp.c
deleted file mode 100644 (file)
index 4f81fdf..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-#include "../../misc/mkostemp.c"
-
-weak_alias (mkostemp, mkostemp64)
diff --git a/sysdeps/wordsize-64/mkostemp64.c b/sysdeps/wordsize-64/mkostemp64.c
deleted file mode 100644 (file)
index 14bb250..0000000
+++ /dev/null
@@ -1 +0,0 @@
-/* Defined in mkostemp.c.  */
diff --git a/sysdeps/wordsize-64/mkstemp.c b/sysdeps/wordsize-64/mkstemp.c
deleted file mode 100644 (file)
index bf6df18..0000000
+++ /dev/null
@@ -1,3 +0,0 @@
-#include "../../misc/mkstemp.c"
-
-weak_alias (mkstemp, mkstemp64)
diff --git a/sysdeps/wordsize-64/mkstemp64.c b/sysdeps/wordsize-64/mkstemp64.c
deleted file mode 100644 (file)
index e72bb46..0000000
+++ /dev/null
@@ -1 +0,0 @@
-/* Defined in mkstemp.c.  */