diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-05-09 03:17:42 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-05-09 03:17:42 +0000 |
commit | 92d83c725e09dbc76acfedc1cf85a01f9f54452d (patch) | |
tree | 039357dd8df0ad0c249d28e098e921ff15fb1eb0 /malloc/thread-m.h | |
parent | 29b095a1561f866b995b23621d1e2ee78e473dc4 (diff) | |
download | glibc-92d83c725e09dbc76acfedc1cf85a01f9f54452d.zip glibc-92d83c725e09dbc76acfedc1cf85a01f9f54452d.tar.gz glibc-92d83c725e09dbc76acfedc1cf85a01f9f54452d.tar.bz2 |
Update.
2003-05-08 Ulrich Drepper <drepper@redhat.com>
* malloc/thread-m.h: Remove special handling of thread_atfork if
HAVE_register_atfork_malloc is defined.
Diffstat (limited to 'malloc/thread-m.h')
-rw-r--r-- | malloc/thread-m.h | 19 |
1 files changed, 4 insertions, 15 deletions
diff --git a/malloc/thread-m.h b/malloc/thread-m.h index 71409eb..da8bbf3 100644 --- a/malloc/thread-m.h +++ b/malloc/thread-m.h @@ -77,24 +77,13 @@ extern void *__dso_handle __attribute__ ((__weak__)); #include <fork.h> -#ifdef HAVE_register_atfork_malloc -# ifdef SHARED -# define thread_atfork(prepare, parent, child) \ - __register_atfork_malloc (prepare, parent, child, __dso_handle) -# else -# define thread_atfork(prepare, parent, child) \ - __register_atfork_malloc (prepare, parent, child, \ - &__dso_handle == NULL ? NULL : __dso_handle) -# endif -#else -# ifdef SHARED -# define thread_atfork(prepare, parent, child) \ +#ifdef SHARED +# define thread_atfork(prepare, parent, child) \ __register_atfork (prepare, parent, child, __dso_handle) -# else -# define thread_atfork(prepare, parent, child) \ +#else +# define thread_atfork(prepare, parent, child) \ __register_atfork (prepare, parent, child, \ &__dso_handle == NULL ? NULL : __dso_handle) -# endif #endif #elif defined(MUTEX_INITIALIZER) |