android_mt6572_jiabo/external/lldb/tools/debugserver/scripts/diagnose-termination.d
2025-09-05 16:56:03 +08: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();
}