mirror of
https://github.com/jart/cosmopolitan.git
synced 2025-07-08 04:08:32 +00:00
Improve stack overflow recovery
It's now possible to use sigaltstack() to recover from stack overflows on Windows. Several bugs in sigaltstack() have been fixed, for all our supported platforms. There's a newer better example showing how to use this, along with three independent unit tests just to further showcase the various techniques.
This commit is contained in:
parent
1694edf85c
commit
4631d34d0d
24 changed files with 590 additions and 274 deletions
|
@ -5,7 +5,6 @@
|
|||
COSMOPOLITAN_C_START_
|
||||
|
||||
extern bool __nocolor;
|
||||
extern bool _wantcrashreports;
|
||||
extern bool g_isrunningundermake;
|
||||
|
||||
void __start_fatal(const char *, int);
|
||||
|
|
|
@ -91,7 +91,6 @@ void ShowCrashReports(void) {
|
|||
InstallCrashHandler(SIGBUS, SA_RESETHAND);
|
||||
InstallCrashHandler(SIGABRT, SA_RESETHAND);
|
||||
InstallCrashHandler(SIGSEGV, SA_RESETHAND | SA_ONSTACK);
|
||||
_wantcrashreports = true;
|
||||
}
|
||||
|
||||
IGNORE_LEAKS(ShowCrashReports)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue