aboutsummaryrefslogtreecommitdiff
path: root/elf/dl-profile.c
diff options
context:
space:
mode:
Diffstat (limited to 'elf/dl-profile.c')
-rw-r--r--elf/dl-profile.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/elf/dl-profile.c b/elf/dl-profile.c
index 91626f6fa3..cd3f07eb3e 100644
--- a/elf/dl-profile.c
+++ b/elf/dl-profile.c
@@ -1,5 +1,5 @@
/* Profiling of shared libraries.
- Copyright (C) 1997 Free Software Foundation, Inc.
+ Copyright (C) 1997, 1998 Free Software Foundation, Inc.
This file is part of the GNU C Library.
Contributed by Ulrich Drepper <drepper@cygnus.com>, 1997.
Based on the BSD mcount implementation.
@@ -35,6 +35,10 @@
#include <sys/stat.h>
#include <atomicity.h>
+/* We have prototype anywhere. */
+extern ssize_t __libc_write __P ((int __fd, __const __ptr_t __buf,
+ size_t __n));
+
/* The LD_PROFILE feature has to be implemented different to the
normal profiling using the gmon/ functions. The problem is that an
arbitrary amount of processes simulataneously can be run using
@@ -305,8 +309,9 @@ _dl_start_profile (struct link_map *map, const char *output_dir)
return;
}
- if (TEMP_FAILURE_RETRY (__write (fd, buf, (expected_size
- & (_dl_pagesize - 1)))) < 0)
+ if (TEMP_FAILURE_RETRY (__libc_write (fd, buf, (expected_size
+ & (_dl_pagesize - 1))))
+ < 0)
goto cannot_create;
}
else if (st.st_size != expected_size)