12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- #ifndef _UCONTEXT_H
- #define _UCONTEXT_H 1
- #include <features.h>
- #include <sys/ucontext.h>
- __BEGIN_DECLS
- extern int getcontext (ucontext_t *__ucp) __THROWNL;
- extern int setcontext (const ucontext_t *__ucp) __THROWNL;
- extern int swapcontext (ucontext_t *__restrict __oucp,
- const ucontext_t *__restrict __ucp) __THROWNL;
- extern void makecontext (ucontext_t *__ucp, void (*__func) (void),
- int __argc, ...) __THROW;
- __END_DECLS
- #endif
|