aboutsummaryrefslogtreecommitdiff
path: root/lib/asan/lit_tests/TestCases/init-order-pthread-create.cc
blob: 52031216d5bb80a5d6608c7fcf8c6637a60e8bee (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
27
28
29
30
31
32
// Check that init-order checking is properly disabled if pthread_create is
// called.

// RUN: %clangxx_asan %s %p/Helpers/init-order-pthread-create-extra.cc -o %t
// RUN: ASAN_OPTIONS=strict_init_order=true %t

#include <stdio.h>
#include <pthread.h>

void *run(void *arg) {
  return arg;
}

void *foo(void *input) {
  pthread_t t;
  pthread_create(&t, 0, run, input);
  void *res;
  pthread_join(t, &res);
  return res;
}

void *bar(void *input) {
  return input;
}

void *glob = foo((void*)0x1234);
extern void *glob2;

int main() {
  printf("%p %p\n", glob, glob2);
  return 0;
}