mirror of
https://github.com/vlang/v.git
synced 2025-09-13 06:22:26 +03:00
builtin: fix thread naming issue on Windows by ignoring RaiseException (0x406D1388) (#25270)
This commit is contained in:
parent
01f108e349
commit
015a85daf4
1 changed files with 1 additions and 1 deletions
|
@ -125,7 +125,7 @@ fn unhandled_exception_handler(e &ExceptionPointers) int {
|
|||
match e.exception_record.code {
|
||||
// These are 'used' by the backtrace printer
|
||||
// so we dont want to catch them...
|
||||
0x4001000A, 0x40010006, 0xE06D7363 {
|
||||
0x4001000A, 0x40010006, 0x406D1388, 0xE06D7363 {
|
||||
return 0
|
||||
}
|
||||
else {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue