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