Implement sigsetjmp and siglongjmp for X64

This commit is contained in:
Bendeguz Pisch
2025-01-04 00:29:19 +00:00
committed by Jeremy Soller
parent 41c88ed288
commit 35a3efd936
11 changed files with 98 additions and 3 deletions
+2 -1
View File
@@ -58,7 +58,8 @@ typedef unsigned long long jmp_buf[8];
#endif
#ifdef __x86_64__
typedef unsigned long jmp_buf[8];
typedef unsigned long jmp_buf[16];
typedef jmp_buf sigjmp_buf;
#endif
#ifdef __riscv