diff options
author | root <root> | 2005-08-20 01:03:31 +0000 |
---|---|---|
committer | root <root> | 2005-08-20 01:03:31 +0000 |
commit | 70cb21053986de4f56de177b048cd7af583e72cf (patch) | |
tree | c7b0cfb9b4e4d746342fd28db0defb99af30484b | |
parent | bc68659218ed41109cf53fdcc6b1119e94a3002e (diff) |
*** empty log message ***rel-1_2
-rw-r--r-- | coro.c | 6 | ||||
-rw-r--r-- | coro.h | 2 |
2 files changed, 4 insertions, 4 deletions
@@ -46,7 +46,7 @@ # endif #endif -#if CORO_SJLJ || CORO_LOOSE || CORO_LINUX || CORO_IRIX +#if CORO_SJLJ || CORO_LOSER || CORO_LINUX || CORO_IRIX #if CORO_SJLJ # include <stdio.h> @@ -105,7 +105,7 @@ void coro_create(coro_context *ctx, makecontext (&(ctx->uc), (void (*)()) coro, 1, arg); -#elif CORO_SJLJ || CORO_LOOSE || CORO_LINUX || CORO_IRIX +#elif CORO_SJLJ || CORO_LOSER || CORO_LINUX || CORO_IRIX # if CORO_SJLJ stack_t ostk, nstk; @@ -165,7 +165,7 @@ void coro_create(coro_context *ctx, sigprocmask (SIG_SETMASK, &osig, 0); -# elif CORO_LOOSE +# elif CORO_LOSER setjmp (ctx->env); ctx->env[7] = (long)((char *)sptr + ssize); @@ -42,7 +42,7 @@ /* * Changes since API version 1: - * replaced bogus -DCORO_LOOSE with gramattically more correct -DCORO_LOSER + * replaced bogus -DCORO_LOOSE with gramatically more correct -DCORO_LOSER */ /* |