-
Notifications
You must be signed in to change notification settings - Fork 570
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
i#3544 RV64: Fix signal mask restoring after detection of RVV (#6890)
We detect the RISC-V vector extension using SIGILL (PR #6836). However, using `dr_longjmp` to exit the signal handler would miss to restore the signal mask, which is operated by the OS after exiting the signal handle. Therefore, we need to manually save and restore the signal mask. Issue: #3544
- Loading branch information
1 parent
577db95
commit 8d5e61c
Showing
3 changed files
with
14 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters