summaryrefslogtreecommitdiff
path: root/elf/dl-profile.c
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2000-08-16 01:28:07 +0000
committerUlrich Drepper <drepper@redhat.com>2000-08-16 01:28:07 +0000
commit5763742fc789ef23864c0b093a2a5e434e65f392 (patch)
tree4e88dd882c27d82da5b058c17df4eef345e840ea /elf/dl-profile.c
parented2d7a57e53fd8cb0575eee0077c55aa4e0641a0 (diff)
Update.
2000-08-15 Ulrich Drepper <drepper@redhat.com> * 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 <kaz@ashi.footprints.net>.
Diffstat (limited to 'elf/dl-profile.c')
-rw-r--r--elf/dl-profile.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/elf/dl-profile.c b/elf/dl-profile.c
index 9f5ee14f32..b9d1287b12 100644
--- a/elf/dl-profile.c
+++ b/elf/dl-profile.c
@@ -175,7 +175,7 @@ _dl_start_profile (struct link_map *map, const char *output_dir)
{
char *filename;
int fd;
- struct elf_stat st;
+ struct stat64 st;
const ElfW(Phdr) *ph;
ElfW(Addr) mapstart = ~((ElfW(Addr)) 0);
ElfW(Addr) mapend = 0;
@@ -267,7 +267,7 @@ _dl_start_profile (struct link_map *map, const char *output_dir)
return;
}
- if (elf_fxstat (_STAT_VER, fd, &st) < 0 || !S_ISREG (st.st_mode))
+ if (__fxstat64 (_STAT_VER, fd, &st) < 0 || !S_ISREG (st.st_mode))
{
/* Not stat'able or not a regular file => don't use it. */
char buf[400];