From 5763742fc789ef23864c0b093a2a5e434e65f392 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Wed, 16 Aug 2000 01:28:07 +0000 Subject: Update. 2000-08-15 Ulrich Drepper * include/link.h: Undo last patches. Hurd now had stat64. * elf/Makefile: Likewise. * elf/dl-load.c: Likewise. * elf/dl-misc.c: Likewise. * elf/dl-profile.c: Likewise. * sysdeps/generic/sysd-link.h: Removed. * sysdeps/unix/sysv/linux/sysd-link.h: Removed. * rt/aio_notify.c (notify_func_wrapper): Wrapper function to call thread event callback function. (__aio_notify_only): Use function above. Patch by Kaz Kylheku . --- elf/dl-misc.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'elf/dl-misc.c') diff --git a/elf/dl-misc.c b/elf/dl-misc.c index 5261007822..4a811a0356 100644 --- a/elf/dl-misc.c +++ b/elf/dl-misc.c @@ -45,11 +45,11 @@ void * _dl_sysdep_read_whole_file (const char *file, size_t *sizep, int prot) { void *result; - struct elf_stat st; + struct stat64 st; int fd = __open (file, O_RDONLY); if (fd < 0) return NULL; - if (elf_fxstat (_STAT_VER, fd, &st) < 0 + if (__fxstat64 (_STAT_VER, fd, &st) < 0 /* No need to map the file if it is empty. */ || st.st_size == 0) result = NULL; -- cgit v1.2.3