pt-sysdep \
pt-setup \
pt-spin \
- pt-sigstate-init \
pt-getname-np \
pt-setname-np \
sem_close \
pt-sigmask \
pt-sigstate \
pt-sigstate-destroy \
+ pt-sigstate-init \
pt-stack-alloc \
pt-testcancel \
pt-thread-alloc \
__pthread_mutexattr_settype;
__pthread_once;
__pthread_setspecific;
+ __pthread_sigstate_init;
__pthread_sigstate;
__pthread_sigstate_destroy;
__pthread_sigmask;
/* Initialize newly create thread *THREAD's signal state data
structures. */
extern error_t __pthread_sigstate_init (struct __pthread *thread);
+libc_hidden_proto (__pthread_sigstate_init)
/* Destroy the signal state data structures associated with thread
*THREAD. */
#include <pthread.h>
#include <pt-internal.h>
#include <hurd/signal.h>
+#include <ldsodefs.h>
error_t
__pthread_sigstate_init (struct __pthread *thread)
return 0;
}
+
+libc_hidden_def (__pthread_sigstate_init)