Bump WebKit (#17095)

Co-authored-by: Jarred Sumner <jarred@jarredsumner.com>
This commit is contained in:
190n
2025-02-12 22:08:53 -08:00
committed by GitHub
parent eb145870cb
commit ea65a2ad48
90 changed files with 163 additions and 261 deletions

View File

@@ -1,4 +1,10 @@
process handle -p true -s false -n false SIGUSR1
# Tell LLDB what to do when the debugged process receives SIGPWR: pass it through to the process
# (-p), but do not stop the process (-s) or notify the user (-n).
#
# JSC's garbage collector sends this signal (as configured by Bun WebKit in
# Thread::initializePlatformThreading() in ThreadingPOSIX.cpp) to the JS thread to suspend or resume
# it. So stopping the process would just create noise when debugging any long-running script.
process handle -p true -s false -n false SIGPWR
command script import misctools/lldb/lldb_pretty_printers.py
type category enable zig.lang