Home | History | Annotate | Download | only in tsan

Lines Matching refs:NULL

8   return NULL;
12 return NULL;
18 return NULL;
25 return NULL;
31 pthread_create(&t_create, NULL, ThreadCreatePipe, NULL);
32 pthread_join(t_create, NULL);
36 pthread_create(&t_dummy, NULL, ThreadDummy, NULL);
37 pthread_join(t_dummy, NULL);
41 pthread_create(&t[0], NULL, ThreadWrite, NULL);
42 pthread_create(&t[1], NULL, ThreadClose, NULL);
43 pthread_join(t[0], NULL);
44 pthread_join(t[1], NULL);