Skip to content
This repository was archived by the owner on May 21, 2019. It is now read-only.
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit f2ec364

Browse files
author
Greg Clayton
committedSep 20, 2012
Re-adding this previously removed file.
git-svn-id: https://llvm.org/svn/llvm-project/lldb/trunk@164331 91177308-0d34-0410-b5e6-96231b3b80d8
1 parent 84e46f1 commit f2ec364

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed
 
Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
fbt::exception_deliver:entry
2+
{
3+
printf("pid %d got an exception of type %d\n", pid, arg1);
4+
stack();
5+
ustack();
6+
}
7+
8+
syscall::kill:entry
9+
{
10+
printf("pid %d called kill(%d, %d)\n", pid, arg0, arg1);
11+
ustack();
12+
}
13+
14+
syscall::__pthread_kill:entry
15+
{
16+
printf("pid %d called pthread_kill(%p, %d)\n", pid, arg0, arg1);
17+
ustack();
18+
}

0 commit comments

Comments
 (0)
This repository has been archived.