mirror of
https://github.com/servo/servo.git
synced 2025-09-30 08:39:16 +01:00
Auto merge of #21673 - gterzian:add_background_monitor, r=<try>
Add background hang monitor <!-- Please describe your changes on the following line: --> Early feedback welcome, still need to ~~actually integrate it in the constellation message loop, and~~ use it in Layout and Script... --- <!-- Thank you for contributing to Servo! Please replace each `[ ]` by `[X]` when the step is complete, and replace `__` with appropriate data: --> - [ ] `./mach build -d` does not report any errors - [ ] `./mach test-tidy` does not report any errors - [ ] These changes fix #16740 (github issue number if applicable). <!-- Either: --> - [ ] There are tests for these changes OR - [ ] These changes do not require tests because _____ <!-- Also, please make sure that "Allow edits from maintainers" checkbox is checked, so that we can help you if you get stuck somewhere along the way.--> <!-- Pull requests that do not address these steps are welcome, but they will require additional verification as part of the review process. --> <!-- Reviewable:start --> --- This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/21673) <!-- Reviewable:end -->
This commit is contained in:
commit
c6f4dcce47
23 changed files with 1134 additions and 11 deletions
|
@ -15,7 +15,7 @@ import subprocess
|
|||
import sys
|
||||
|
||||
symbol_regex = re.compile(b"D \*UND\*\t(.*) (.*)$")
|
||||
allowed_symbols = frozenset([b'unshare', b'malloc_usable_size', b'__cxa_type_match'])
|
||||
allowed_symbols = frozenset([b'unshare', b'malloc_usable_size', b'__cxa_type_match', b'signal'])
|
||||
actual_symbols = set()
|
||||
|
||||
objdump_output = subprocess.check_output([
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue