mirror of
https://github.com/genesi/linux-legacy.git
synced 2026-07-31 13:03:04 +00:00
13 lines
249 B
C
13 lines
249 B
C
|
|
#ifndef _H8300_UCONTEXT_H
|
||
|
|
#define _H8300_UCONTEXT_H
|
||
|
|
|
||
|
|
struct ucontext {
|
||
|
|
unsigned long uc_flags;
|
||
|
|
struct ucontext *uc_link;
|
||
|
|
stack_t uc_stack;
|
||
|
|
struct sigcontext uc_mcontext;
|
||
|
|
sigset_t uc_sigmask; /* mask last for extensibility */
|
||
|
|
};
|
||
|
|
|
||
|
|
#endif
|