From e1dc7e4511d4644060d4904dcae50808d966fff7 Mon Sep 17 00:00:00 2001 From: rsc Date: Mon, 27 Dec 2004 00:13:48 +0000 Subject: signal handling, add prototype for pthreadinit --- src/libthread/thread.c | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) (limited to 'src/libthread/thread.c') diff --git a/src/libthread/thread.c b/src/libthread/thread.c index 69895181..9a42b9e8 100644 --- a/src/libthread/thread.c +++ b/src/libthread/thread.c @@ -190,7 +190,7 @@ scheduler(void *v) p = v; setproc(p); - print("s %p %d\n", p, gettid()); + // print("s %p %d\n", p, gettid()); p->tid = pthread_self(); pthread_detach(p->tid); lock(&p->lock); @@ -503,6 +503,13 @@ threadmainstart(void *v) threadmain(threadargc, threadargv); } +extern Jmp *(*_notejmpbuf)(void); +static Jmp* +threadnotejmp(void) +{ + return &proc()->sigjmp; +} + int main(int argc, char **argv) { @@ -524,8 +531,9 @@ main(int argc, char **argv) _wunlock = threadwunlock; _rsleep = threadrsleep; _rwakeup = threadrwakeup; + _notejmpbuf = threadnotejmp; - pthreadinit(); + _pthreadinit(); p = procalloc(); if(mainstacksize == 0) mainstacksize = 65536; -- cgit v1.2.3