Statistics
| Branch: | Revision:

root / coroutine-gthread.c @ c5e6fb7e

History | View | Annotate | Download (3.6 kB)

# Date Author Comment
d0e2fce5 08/01/2011 01:14 pm Aneesh Kumar K.V

coroutine: implement coroutines using gthread

On platforms that don't support makecontext(3) use gthread based
coroutine implementation.

Darwin has makecontext(3) but getcontext(3) is stubbed out to return
ENOTSUP. Andreas Färber <> debugged this and...