aboutsummaryrefslogtreecommitdiff
path: root/example/recurse2.c
blob: 1fe1c4dc87aee83999bfabda26a46096f9b37f8b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#include <pthread.h>

// Stack overflow on different thread.

void qux();

void foo() {
  qux();
}
void bar() {
  foo();
}
void qux() {
  bar();
}

void* thread(void*) {
  foo();
  return 0;
}

int main() {
  pthread_t th;
  pthread_create(&th, NULL, thread, NULL);
  pthread_join(th, NULL);
}