From 5989869a493d6bb1fc49ec0f85e45e20922ae241 Mon Sep 17 00:00:00 2001 From: root Date: Thu, 30 Nov 2006 18:21:14 +0000 Subject: *** empty log message *** --- coro.c | 16 +++++++++++----- 1 file changed, 11 insertions(+), 5 deletions(-) (limited to 'coro.c') diff --git a/coro.c b/coro.c index d431054..196a4d3 100644 --- a/coro.c +++ b/coro.c @@ -100,9 +100,9 @@ trampoline (int sig) #endif /* initialize a machine state */ -void coro_create(coro_context *ctx, - coro_func coro, void *arg, - void *sptr, long ssize) +void coro_create (coro_context *ctx, + coro_func coro, void *arg, + void *sptr, long ssize) { #if CORO_UCONTEXT @@ -142,7 +142,10 @@ void coro_create(coro_context *ctx, nsa.sa_flags = SA_ONSTACK; if (sigaction (SIGUSR2, &nsa, &osa)) - perror ("sigaction"); + { + perror ("sigaction"); + abort (); + } /* set the new stack */ nstk.ss_sp = STACK_ADJUST_PTR (sptr,ssize); /* yes, some platforms (IRIX) get this wrong. */ @@ -150,7 +153,10 @@ void coro_create(coro_context *ctx, nstk.ss_flags = 0; if (sigaltstack (&nstk, &ostk) < 0) - perror ("sigaltstack"); + { + perror ("sigaltstack"); + abort (); + } trampoline_count = 0; kill (getpid (), SIGUSR2); -- cgit v1.2.3