aboutsummaryrefslogblamecommitdiff
path: root/example/recurse2.c
blob: 1fe1c4dc87aee83999bfabda26a46096f9b37f8b (plain) (tree)

























                                          
#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);
}