mirror of
https://github.com/mruby/mruby
synced 2026-06-08 16:11:16 +00:00
Merge pull request #3068 from kazuho/kazuho/osx-_setjmp
use _setjmp/_longjmp on OS X
This commit is contained in:
+10
-2
@@ -20,11 +20,19 @@ typedef mrb_int mrb_jmpbuf_impl;
|
||||
|
||||
#include <setjmp.h>
|
||||
|
||||
#define MRB_TRY(buf) do { if (setjmp((buf)->impl) == 0) {
|
||||
#if defined(__APPLE__) || defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__)
|
||||
#define MRB_SETJMP _setjmp
|
||||
#define MRB_LONGJMP _longjmp
|
||||
#else
|
||||
#define MRB_SETJMP setjmp
|
||||
#define MRB_LONGJMP longjmp
|
||||
#endif
|
||||
|
||||
#define MRB_TRY(buf) do { if (MRB_SETJMP((buf)->impl) == 0) {
|
||||
#define MRB_CATCH(buf) } else {
|
||||
#define MRB_END_EXC(buf) } } while(0)
|
||||
|
||||
#define MRB_THROW(buf) longjmp((buf)->impl, 1);
|
||||
#define MRB_THROW(buf) MRB_LONGJMP((buf)->impl, 1);
|
||||
#define mrb_jmpbuf_impl jmp_buf
|
||||
|
||||
#endif
|
||||
|
||||
Reference in New Issue
Block a user