1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-28 00:21:52 +03:00

malloc: Remove unused definitions of thread_atfork, thread_atfork_static

This commit is contained in:
Florian Weimer
2016-04-14 09:17:36 +02:00
parent 29d794863c
commit ae9e94e744
3 changed files with 7 additions and 35 deletions

View File

@ -20,8 +20,6 @@
#ifndef _MALLOC_MACHINE_H
#define _MALLOC_MACHINE_H
#undef thread_atfork_static
#include <atomic.h>
#include <libc-lock.h>
@ -43,12 +41,6 @@
#define mutex_trylock(m) (!__mutex_trylock(m))
#define thread_atfork(prepare, parent, child) do {} while(0)
#define thread_atfork_static(prepare, parent, child) \
text_set_element(_hurd_fork_prepare_hook, prepare); \
text_set_element(_hurd_fork_parent_hook, parent); \
text_set_element(_hurd_fork_child_hook, child);
/* No we're *not* using pthreads. */
#define __pthread_initialize ((void (*)(void))0)