add missing legacy LFS *64 symbol aliases
authorSzabolcs Nagy <nsz@port70.net>
Thu, 4 Sep 2014 20:01:36 +0000 (22:01 +0200)
committerRich Felker <dalias@aerifal.cx>
Fri, 5 Sep 2014 20:02:22 +0000 (16:02 -0400)
versionsort64, aio*64 and lio*64 symbols were missing, they are
only needed for glibc ABI compatibility, on the source level
dirent.h and aio.h already redirect them.

src/aio/aio_cancel.c
src/aio/aio_error.c
src/aio/aio_fsync.c
src/aio/aio_readwrite.c
src/aio/aio_return.c
src/aio/aio_suspend.c
src/aio/lio_listio.c
src/dirent/versionsort.c

index 5a753b1f42f6b8a1ac4dddf12b30411ca89dd9c3..16fc431f3864361f395006eae90c0bb70e5ac269 100644 (file)
@@ -1,6 +1,7 @@
 #include <aio.h>
 #include <pthread.h>
 #include <errno.h>
+#include "libc.h"
 
 int aio_cancel(int fd, struct aiocb *cb)
 {
@@ -14,3 +15,5 @@ int aio_cancel(int fd, struct aiocb *cb)
        }
        return cb->__err==EINPROGRESS ? AIO_NOTCANCELED : AIO_ALLDONE;
 }
+
+LFS64(aio_cancel);
index a780fd33d3c9eca3e169c67c969bc91c10130cc9..fd42ea1173acdd2573d371f426a9ed2329ca08f0 100644 (file)
@@ -1,6 +1,9 @@
 #include <aio.h>
+#include "libc.h"
 
 int aio_error(const struct aiocb *cb)
 {
        return cb->__err;
 }
+
+LFS64(aio_error);
index 0ac6ea873020e4647157254b5010566b44dcd75b..6e1a70abe7867762c2740498152076dbc69b43cf 100644 (file)
@@ -1,5 +1,6 @@
 #include <aio.h>
 #include <errno.h>
+#include "libc.h"
 
 int aio_fsync(int op, struct aiocb *cb)
 {
@@ -7,3 +8,5 @@ int aio_fsync(int op, struct aiocb *cb)
        errno = EINVAL;
        return -1;
 }
+
+LFS64(aio_fsync);
index 22782265ca65061d97e02ee1068a54753f4dc503..8753ffda52f4ea826950154d92f47b3fd08e6fad 100644 (file)
@@ -105,3 +105,6 @@ int aio_write(struct aiocb *cb)
        cb->aio_lio_opcode = LIO_WRITE;
        return new_req(cb);
 }
+
+LFS64(aio_read);
+LFS64(aio_write);
index df10bdbe2272f27f08da033b4c6d153d9c80077d..c1ce450cedc46e25bf2fb5e78303bbee20037916 100644 (file)
@@ -1,6 +1,9 @@
 #include <aio.h>
+#include "libc.h"
 
 ssize_t aio_return(struct aiocb *cb)
 {
        return cb->__ret;
 }
+
+LFS64(aio_return);
index 39a1d3a228c8d0611f8fbe51f78d1116a90d200b..dcdf60196931201e0f07721d5bc707c14f1ce298 100644 (file)
@@ -1,6 +1,7 @@
 #include <aio.h>
 #include <errno.h>
 #include "pthread_impl.h"
+#include "libc.h"
 
 /* Due to the requirement that aio_suspend be async-signal-safe, we cannot
  * use any locks, wait queues, etc. that would make it more efficient. The
@@ -55,3 +56,5 @@ int aio_suspend(const struct aiocb *const cbs[], int cnt, const struct timespec
                }
        }
 }
+
+LFS64(aio_suspend);
index 75ed2257fa1dd704857d7a43dd6db1b88900489b..bd37767ebfe060a2ff147065e956505a10fa99ff 100644 (file)
@@ -141,3 +141,4 @@ int lio_listio(int mode, struct aiocb *restrict const *restrict cbs, int cnt, st
        return 0;
 }
 
+LFS64(lio_listio);
index 9769610518eb3f0c78a8cac426cbeb464b76a78a..410cb703456f30413db70c32ec1877b90f6e23c3 100644 (file)
@@ -1,8 +1,12 @@
 #define _GNU_SOURCE
 #include <string.h>
 #include <dirent.h>
+#include "libc.h"
 
 int versionsort(const struct dirent **a, const struct dirent **b)
 {
        return strverscmp((*a)->d_name, (*b)->d_name);
 }
+
+#undef versionsort64
+LFS64(versionsort);