Changeset: 01eb241a63b7 for MonetDB URL: https://dev.monetdb.org/hg/MonetDB/rev/01eb241a63b7 Modified Files: sql/include/exception_buffer.h Branch: Jun2023 Log Message:
small fix for using siglongjmp, use correct sigjmp_buf type diffs (15 lines): diff --git a/sql/include/exception_buffer.h b/sql/include/exception_buffer.h --- a/sql/include/exception_buffer.h +++ b/sql/include/exception_buffer.h @@ -15,7 +15,11 @@ #include <setjmp.h> typedef struct exception_buffer { +#ifdef HAVE_SIGLONGJMP + sigjmp_buf state; +#else jmp_buf state; +#endif int code; char *msg; int enabled; _______________________________________________ checkin-list mailing list -- checkin-list@monetdb.org To unsubscribe send an email to checkin-list-le...@monetdb.org