September 2025 | ||||||
Mo | Tu | We | Th | Fr | Sa | Su |
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 1 | 2 | 3 | 4 | 5 |
6 | 7 | 8 | 9 | 10 | 11 | 12 |
01: #ifndef __ASM_GENERIC_UCONTEXT_H 02: #define __ASM_GENERIC_UCONTEXT_H 03: 04: struct ucontext { 05: unsigned long uc_flags; 06: struct ucontext *uc_link; 07: stack_t uc_stack; 08: struct sigcontext uc_mcontext; 09: sigset_t uc_sigmask; /* mask last for extensibility */ 10: }; 11: 12: #endif /* __ASM_GENERIC_UCONTEXT_H */ 13: