bolt/deps/llvm-18.1.8/lldb/tools/debugserver/scripts/diagnose-termination.d
2025-02-14 19:21:04 +01:00

18 lines
334 B
D

fbt::exception_deliver:entry
{
printf("pid %d got an exception of type %d\n", pid, arg1);
stack();
ustack();
}
syscall::kill:entry
{
printf("pid %d called kill(%d, %d)\n", pid, arg0, arg1);
ustack();
}
syscall::__pthread_kill:entry
{
printf("pid %d called pthread_kill(%p, %d)\n", pid, arg0, arg1);
ustack();
}