ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/libcoro/coro.c
(Generate patch)

Comparing libcoro/coro.c (file contents):
Revision 1.10 by root, Sat Mar 22 23:08:40 2003 UTC vs.
Revision 1.11 by pcg, Fri Feb 13 23:17:41 2004 UTC

163 sigprocmask (SIG_SETMASK, &osig, 0); 163 sigprocmask (SIG_SETMASK, &osig, 0);
164 164
165# elif CORO_LOOSE 165# elif CORO_LOOSE
166 166
167 setjmp (ctx->env); 167 setjmp (ctx->env);
168 ctx->env[7] = (int)((char *)sptr + ssize); 168 ctx->env[7] = (long)((char *)sptr + ssize);
169 ctx->env[8] = (int)coro_init; 169 ctx->env[8] = (long)coro_init;
170 170
171# elif CORO_LINUX 171# elif CORO_LINUX
172 172
173 setjmp (ctx->env); 173 setjmp (ctx->env);
174#if defined(__GLIBC__) && defined(__GLIBC_MINOR__) \ 174#if defined(__GLIBC__) && defined(__GLIBC_MINOR__) \

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines