about summary refs log tree commit diff
path: root/linuxthreads
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2002-12-31 21:10:07 +0000
committerUlrich Drepper <drepper@redhat.com>2002-12-31 21:10:07 +0000
commit6d6ee629afa277bc03dea147e937925e8cf3ec31 (patch)
tree4659cef14e08a04fd18d035f230eedda02dbb7db /linuxthreads
parenta4baf360be5b32c2246d4a7b6fef34e2d5b0c4fe (diff)
downloadglibc-6d6ee629afa277bc03dea147e937925e8cf3ec31.tar.gz
glibc-6d6ee629afa277bc03dea147e937925e8cf3ec31.tar.xz
glibc-6d6ee629afa277bc03dea147e937925e8cf3ec31.zip
Update.
2002-12-31  Ulrich Drepper  <drepper@redhat.com>

	* malloc/thread-m.h [SHARED] (thread_atfork): Assume __dso_handle
	is available.

	* sysdeps/unix/sysv/linux/xstatconv.c (xstat_conv): Re-add
Diffstat (limited to 'linuxthreads')
-rw-r--r--linuxthreads/ChangeLog7
-rw-r--r--linuxthreads/sysdeps/unix/sysv/linux/fork.h1
-rw-r--r--linuxthreads/sysdeps/unix/sysv/linux/register-atfork.c1
3 files changed, 9 insertions, 0 deletions
diff --git a/linuxthreads/ChangeLog b/linuxthreads/ChangeLog
index fafea62907..20ee770f8f 100644
--- a/linuxthreads/ChangeLog
+++ b/linuxthreads/ChangeLog
@@ -1,3 +1,10 @@
+2002-12-31  Ulrich Drepper  <drepper@redhat.com>
+
+	* sysdeps/unix/sysv/linux/fork.h: Add libc_hidden_proto for
+	__register_atfork.
+	* sysdeps/unix/sysv/linux/register-atfork.c: Add libc_hidden_def
+	for __register_atfork.
+
 2002-12-31  Jakub Jelinek  <jakub@redhat.com>
 
 	* sysdeps/i386/i686/pt-machine.h: Use __ASSEMBLER__ instead of
diff --git a/linuxthreads/sysdeps/unix/sysv/linux/fork.h b/linuxthreads/sysdeps/unix/sysv/linux/fork.h
index e84119a2ef..76708e3e39 100644
--- a/linuxthreads/sysdeps/unix/sysv/linux/fork.h
+++ b/linuxthreads/sysdeps/unix/sysv/linux/fork.h
@@ -53,6 +53,7 @@ extern int __register_atfork (void (*__prepare) (void),
 			      void (*__parent) (void),
 			      void (*__child) (void),
 			      void *dso_handle);
+libc_hidden_proto (__register_atfork)
 
 #ifndef ARCH_FORK
 # define ARCH_FORK() INLINE_SYSCALL (fork, 0)
diff --git a/linuxthreads/sysdeps/unix/sysv/linux/register-atfork.c b/linuxthreads/sysdeps/unix/sysv/linux/register-atfork.c
index 2dce262a38..e4490e73e9 100644
--- a/linuxthreads/sysdeps/unix/sysv/linux/register-atfork.c
+++ b/linuxthreads/sysdeps/unix/sysv/linux/register-atfork.c
@@ -85,3 +85,4 @@ __register_atfork (prepare, parent, child, dso_handle)
 
   return 0;
 }
+libc_hidden_def (__register_atfork)