12345678910111213141516171819202122232425262728293031323334353637 |
- #include <stdlib.h>
- #include <string.h>
- #define STACK_ALIGN 16
- #define MINIMAL_REST_STACK 2048
- #define TCB_ALIGNMENT 16
- #define CURRENT_STACK_FRAME __builtin_frame_address (0)
- #define __exit_thread_inline(val) \
- INLINE_SYSCALL (exit, 1, (val))
|