We now have a POSIX compatible setjmp.h header (also BeOS binary compatible).

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@9194 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2004-10-05 13:06:36 +00:00
parent 059b143a70
commit b5c6c8b6b5
1 changed files with 36 additions and 0 deletions

36
headers/posix/setjmp.h Normal file
View File

@ -0,0 +1,36 @@
/*
** Distributed under the terms of the Haiku License.
*/
#ifndef _SETJMP_H_
#define _SETJMP_H_
#include <signal.h>
typedef struct __jmp_buf {
int regs[6]; /* saved registers, stack & program pointer */
int mask_was_saved;
sigset_t saved_mask;
} jmp_buf[1];
typedef jmp_buf sigjmp_buf;
#ifdef __cplusplus
extern "C" {
#endif
extern int _setjmp(jmp_buf jumpBuffer);
extern int setjmp(jmp_buf jumpBuffer);
extern int sigsetjmp(jmp_buf jumpBuffer, int saveMask);
extern void _longjmp(jmp_buf jumpBuffer, int value);
extern void longjmp(jmp_buf jumpBuffer, int value);
extern void siglongjmp(sigjmp_buf jumpBuffer, int value);
#ifdef __cplusplus
}
#endif
#endif /* _SETJMP_H_ */