From f12944ec15f451d0d1ea77cadb9ff40350075884 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Tue, 21 Apr 1998 09:43:11 +0000 Subject: Update. 1998-04-21 Ulrich Drepper * ptlongjmp.c: Add prorotypes for __libc_siglongjmp and __libc_longjmp. --- linuxthreads/ChangeLog | 5 +++++ linuxthreads/ptlongjmp.c | 8 ++++++++ 2 files changed, 13 insertions(+) (limited to 'linuxthreads') diff --git a/linuxthreads/ChangeLog b/linuxthreads/ChangeLog index ba2a20f4d0..0d276a9aba 100644 --- a/linuxthreads/ChangeLog +++ b/linuxthreads/ChangeLog @@ -1,3 +1,8 @@ +1998-04-21 Ulrich Drepper + + * ptlongjmp.c: Add prorotypes for __libc_siglongjmp and + __libc_longjmp. + 1998-04-20 14:55 Ulrich Drepper * Makefile (libpthread-routines): Add ptlongjmp and spinlock. diff --git a/linuxthreads/ptlongjmp.c b/linuxthreads/ptlongjmp.c index 1397dba43a..c5704f9e9a 100644 --- a/linuxthreads/ptlongjmp.c +++ b/linuxthreads/ptlongjmp.c @@ -19,6 +19,14 @@ #include "pthread.h" #include "internals.h" +/* These functions are not declared anywhere since they shouldn't be + used at another place but here. */ +extern void __libc_siglongjmp (sigjmp_buf env, int val) + __attribute__ ((noreturn)); +extern void __libc_longjmp (sigjmp_buf env, int val) + __attribute__ ((noreturn)); + + static void pthread_cleanup_upto(__jmp_buf target) { pthread_descr self = thread_self(); -- cgit v1.2.3