Skip to content

Commit

Permalink
restore private setjmp functionality [#15]
Browse files Browse the repository at this point in the history
  • Loading branch information
stsp committed Oct 22, 2024
1 parent 7b7575d commit b6a0813
Show file tree
Hide file tree
Showing 2 changed files with 83 additions and 2 deletions.
81 changes: 81 additions & 0 deletions include/setjmp.h
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
/* Copyright (C) 2012 DJ Delorie, see COPYING.DJ for details */
/* Copyright (C) 2011 DJ Delorie, see COPYING.DJ for details */
/* Copyright (C) 2003 DJ Delorie, see COPYING.DJ for details */
/* Copyright (C) 2001 DJ Delorie, see COPYING.DJ for details */
/* Copyright (C) 1999 DJ Delorie, see COPYING.DJ for details */
/* Copyright (C) 1995 DJ Delorie, see COPYING.DJ for details */
#ifndef __dj_include_setjmp_h_
#define __dj_include_setjmp_h_

#ifdef __cplusplus
namespace std {
extern "C" {
#endif

#ifndef __dj_ENFORCE_ANSI_FREESTANDING

typedef struct __jmp_buf {
void *buf[5];
volatile int rc;
} jmp_buf[1];

__attribute__((noreturn))
static inline void longjmp(jmp_buf env, int val)
{
env[0].rc = val;
__builtin_longjmp(env[0].buf, 1);
}

#define setjmp(env) ( \
{ \
int _rc = __builtin_setjmp(env[0].buf); \
(_rc ? env[0].rc : 0); \
})

#if (defined(__STDC_VERSION__) && __STDC_VERSION__ >= 199901L) \
|| !defined(__STRICT_ANSI__) || defined(__cplusplus)

#endif /* (__STDC_VERSION__ >= 199901L) || !__STRICT_ANSI__ */

#ifndef __STRICT_ANSI__
#if 0
typedef jmp_buf sigjmp_buf;

int sigsetjmp(sigjmp_buf env, int savemask);
void siglongjmp(sigjmp_buf env, int val) __attribute__((__noreturn__));
#endif
#ifndef _POSIX_SOURCE

#endif /* !_POSIX_SOURCE */
#endif /* !__STRICT_ANSI__ */
#endif /* !__dj_ENFORCE_ANSI_FREESTANDING */

#ifndef __dj_ENFORCE_FUNCTION_CALLS
#endif /* !__dj_ENFORCE_FUNCTION_CALLS */

#ifdef __cplusplus
}
}
#endif

#endif /* !__dj_include_setjmp_h_ */


#if defined(__cplusplus) && !defined(__dj_ENFORCE_ANSI_FREESTANDING)

using std::setjmp;

#ifndef __dj_via_cplusplus_header_

using std::longjmp;
using std::jmp_buf;

#ifndef __STRICT_ANSI__

using std::sigjmp_buf;
using std::sigsetjmp;
using std::siglongjmp;

#endif /* !__STRICT_ANSI__ */
#endif /* !__dj_via_cplusplus_header_ */
#endif /* __cplusplus && !__dj_ENFORCE_ANSI_FREESTANDING */
4 changes: 2 additions & 2 deletions include/sys/exceptn.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ extern "C" {
#include <setjmp.h>
#include <dpmi.h>

struct __jmp_buf {
struct _jmp_buf {
ULONG32 __eax, __ebx, __ecx, __edx, __esi;
ULONG32 __edi, __ebp, __esp, __eip, __eflags;
unsigned short __cs, __ds, __es, __fs, __gs, __ss;
Expand All @@ -34,7 +34,7 @@ struct __jmp_buf {
ULONG32 __exception_ptr; /* pointer to previous exception */
unsigned char __fpu_state[108]; /* for future use */
};
EXTERN ASM_P(struct __jmp_buf, __djgpp_exception_state_ptr); /* Must include setjmp.h first */
EXTERN ASM_P(struct _jmp_buf, __djgpp_exception_state_ptr); /* Must include setjmp.h first */
#define __djgpp_exception_state (__djgpp_exception_state_ptr)

EXTERN ASM(unsigned short, __djgpp_our_DS);
Expand Down

0 comments on commit b6a0813

Please sign in to comment.