From ef187474bc32c56121db454e023197f2037e601d Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Sat, 15 Apr 2000 17:15:10 +0000 Subject: Update. * sysdeps/alpha/dl-machine.h (RTLD_START):Rewrite for new init function interface. Patch by Richard Henderson . --- linuxthreads/internals.h | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'linuxthreads/internals.h') diff --git a/linuxthreads/internals.h b/linuxthreads/internals.h index 17c8e4d4d6..e6b58df3ca 100644 --- a/linuxthreads/internals.h +++ b/linuxthreads/internals.h @@ -431,18 +431,19 @@ extern void __pthread_kill_other_threads_np (void); void __pthread_restart_old(pthread_descr th); void __pthread_suspend_old(pthread_descr self); +int __pthread_timedsuspend_old(pthread_descr self, const struct timespec *abs); void __pthread_restart_new(pthread_descr th); void __pthread_suspend_new(pthread_descr self); +int __pthread_timedsuspend_new(pthread_descr self, const struct timespec *abs); void __pthread_wait_for_restart_signal(pthread_descr self); -void __pthread_init_condvar(int rt_sig_available); - /* Global pointers to old or new suspend functions */ extern void (*__pthread_restart)(pthread_descr); extern void (*__pthread_suspend)(pthread_descr); +extern int (*__pthread_timedsuspend)(pthread_descr, const struct timespec *); /* Prototypes for the function without cancelation support when the normal version has it. */ -- cgit v1.2.3