1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-09-11 12:10:50 +03:00
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
This commit is contained in:
Ulrich Drepper
2002-12-31 21:10:07 +00:00
parent a4baf360be
commit 6d6ee629af
8 changed files with 30 additions and 2 deletions

View File

@@ -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

View File

@@ -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)

View File

@@ -85,3 +85,4 @@ __register_atfork (prepare, parent, child, dso_handle)
return 0;
}
libc_hidden_def (__register_atfork)