aboutsummaryrefslogtreecommitdiff
path: root/example/raise2.c
diff options
context:
space:
mode:
authorJohannes Stoelp <johannes.stoelp@gmail.com>2024-09-09 22:58:51 +0200
committerJohannes Stoelp <johannes.stoelp@gmail.com>2024-09-09 22:58:51 +0200
commitfe0c58e5fbaa37668779ec10d2761e6657b824f4 (patch)
tree9d13c3764887ec9b3751973d2e402b1e79830c76 /example/raise2.c
downloadpreload-libbt-fe0c58e5fbaa37668779ec10d2761e6657b824f4.tar.gz
preload-libbt-fe0c58e5fbaa37668779ec10d2761e6657b824f4.zip
initial commit of libbt
Diffstat (limited to 'example/raise2.c')
-rw-r--r--example/raise2.c25
1 files changed, 25 insertions, 0 deletions
diff --git a/example/raise2.c b/example/raise2.c
new file mode 100644
index 0000000..056a341
--- /dev/null
+++ b/example/raise2.c
@@ -0,0 +1,25 @@
+#include <pthread.h>
+#include <signal.h>
+
+// Raise from different thread.
+
+void foo() {
+ raise(SIGSEGV);
+}
+void bar() {
+ foo();
+}
+void qux() {
+ bar();
+}
+
+void* thread(void*) {
+ qux();
+ return 0;
+}
+
+int main() {
+ pthread_t th;
+ pthread_create(&th, NULL, thread, NULL);
+ pthread_join(th, NULL);
+}