mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-05 15:28:39 +09:00
Issue #3049 - Disable wasm signal handlers on loongarch64
This commit is contained in:
parent
08d7b89ee5
commit
ebd4d215df
1 changed files with 7 additions and 0 deletions
|
|
@ -1358,6 +1358,13 @@ ProcessHasSignalHandlers()
|
|||
# endif
|
||||
#endif
|
||||
|
||||
#if defined(JS_CODEGEN_LOONGARCH64)
|
||||
// The loongarch64 port is baseline-only for now: no wasm compiler support
|
||||
// and no Ion interrupt machinery that depends on these process-wide
|
||||
// signal handlers. Keeping them installed risks misrouting ordinary faults.
|
||||
return false;
|
||||
#endif
|
||||
|
||||
// The interrupt handler allows the main thread to be paused from another
|
||||
// thread (see InterruptRunningJitCode).
|
||||
#if defined(XP_WIN)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue