Changes in uspace/lib/c/include/setjmp.h [82fd245:bc56f30] in mainline
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
uspace/lib/c/include/setjmp.h
r82fd245 rbc56f30 31 31 */ 32 32 33 #ifndef LIBC_SETJMP_H_ 34 #define LIBC_SETJMP_H_ 35 36 #ifdef __cplusplus 37 extern "C" { 38 #endif 33 #ifndef _LIBC_SETJMP_H_ 34 #define _LIBC_SETJMP_H_ 39 35 40 36 #include <libarch/fibril_context.h> 41 37 #include <_bits/__noreturn.h> 38 #include <_bits/decls.h> 42 39 43 typedef context_t jmp_buf[1];40 __C_DECLS_BEGIN; 44 41 45 extern int __setjmp(jmp_buf) __attribute__((returns_twice)); 46 extern __noreturn void __longjmp(jmp_buf, int); 42 typedef __context_t jmp_buf[1]; 47 43 48 #define setjmp __setjmp 44 extern int __context_save(__context_t *) __attribute__((returns_twice)); 45 extern __noreturn void __context_restore(__context_t *, int); 46 49 47 extern __noreturn void longjmp(jmp_buf, int); 50 48 51 #ifdef __cplusplus 52 } 53 # endif49 __C_DECLS_END; 50 51 #define setjmp __context_save 54 52 55 53 #endif
Note:
See TracChangeset
for help on using the changeset viewer.