HomeSort by relevance Sort by last modified time
    Searched defs:thr2 (Results 1 - 6 of 6) sorted by null

  /external/compiler-rt/test/tsan/
cond.c 29 void *thr2(void *p) { function
49 pthread_create(&th2, 0, thr2, 0);
  /external/valgrind/none/tests/
threadederrno.c 10 void* thr2 ( void* v ) function
34 pthread_create(&tid2, NULL, &thr2, NULL);
  /external/compiler-rt/lib/tsan/go/
test.c 67 void *thr2 = 0; local
68 __tsan_go_start(thr0, &thr2, (char*)&barfoo + 1);
80 __tsan_func_enter(thr2, (char*)&foobar + 1);
81 __tsan_read(thr2, buf, (char*)&barfoo + 1);
83 __tsan_func_exit(thr2);
84 __tsan_go_end(thr2);
  /external/valgrind/helgrind/tests/
bar_bad.c 21 pthread_t thr1, thr2; local
65 pthread_create(&thr2, NULL, child1, (void*)bar4);
84 r= pthread_cancel(thr2); assert(!r);
  /libcore/luni/src/test/java/libcore/java/lang/
OldObjectTest.java 37 TestThread2 thr2; field in class:OldObjectTest
121 thr2 = new TestThread2();
123 thr2.start();
124 thr2.join();
127 thr2 = null;
187 thr2 = new TestThread2();
189 thr2.start();
190 thr2.join();
193 thr2 = null;
243 thr2 = new TestThread2()
    [all...]
OldRuntimeTest.java 412 Thread thr2 = new Thread () { local
424 Runtime.getRuntime().addShutdownHook(thr2);

Completed in 312 milliseconds