aboutsummaryrefslogtreecommitdiff
path: root/core/testing/signal_handler_windows.odin
Commit message (Collapse)AuthorAgeFilesLines
* Revert "Try to ensure the runner's handler gets called first"blob18072025-12-241-1/+1
| | | | This reverts commit 13faedaf4ce3a24ed92917d44244f226ff3fed57. As it's causing issues with ASAN, which adds it's own `ExceptionHandler` as the first. Making ours first messes with it. Causing an Access Violation when trying to setup `context` in our handler.
* Try to ensure the runner's handler gets called firstblob18072025-12-241-1/+1
|
* Fix an OOB & format exception code as hexblob18072025-12-231-13/+7
| | | | Fix an OOB caused when the test runner catches the exception & format exception codes as upper case hex.
* Remove unneeded `Exception_Code` enumblob18072025-12-231-37/+12
|
* [`core:testing`] Use Windows API for SIG handlingblob18072025-12-231-2/+238
|
* testing: separate the posix import into target filesLaytan Laats2024-11-011-0/+6
This is needed for the docs generator to generate all the docs for the posix package, if it is imported like it was on Windows it would generate docs for the Windows version of the package which has much less symbols exposed.