HomeSort by relevance Sort by last modified time
    Searched refs:pthread_detach (Results 1 - 25 of 235) sorted by null

1 2 3 4 5 6 7 8 910

  /external/ltp/testcases/open_posix_testsuite/conformance/definitions/pthread_h/
9-1-buildonly.c 10 int pthread_detach(pthread_t);
19 pthread_detach(a);
  /external/valgrind/drd/tests/
pth_detached3.c 1 /* Invoke pthread_detach() with an invalid thread ID. */
20 /* Invoke pthread_detach() with the thread ID of a joined thread. */
21 pthread_detach(thread);
23 /* Invoke pthread_detach() with an invalid thread ID. */
24 pthread_detach(thread + 8);
threaded-fork.c 26 pthread_detach(childthread);
pth_detached.c 31 pthread_detach(pthread_self());
  /external/compiler-rt/test/tsan/
thread_detach.c 14 pthread_detach(t);
thread_leak2.c 12 pthread_detach(t);
thread_detach2.c 6 // is not established if pthread_create is followed by pthread_detach.
21 pthread_detach(t);
dtls.c 17 pthread_detach(pthread_self());
  /bionic/libc/bionic/
pthread_detach.cpp 34 int pthread_detach(pthread_t t) { function
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_detach/
4-2.c 8 * Test that pthread_detach()
59 ret = pthread_detach(new_th);
61 /* Check return value of pthread_detach() */
2-1.c 8 * Test that pthread_detach()
10 * If 'thread' has not terminated, pthread_detach() shall not cause it to
11 * terminate. The effect of multiple pthread_detach() calls on the same
65 if (pthread_detach(new_th) != 0) {
3-1.c 8 * Test that pthread_detach()
65 ret = pthread_detach(new_th);
70 /* Check return value of pthread_detach() */
4-1.c 8 * Test that pthread_detach()
70 ret = pthread_detach(new_th);
75 /* Check return value of pthread_detach() */
1-1.c 8 * Test that pthread_detach()
15 * 2. Detach that thread with pthread_detach()
66 if (pthread_detach(new_th) != 0) {
1-2.c 19 * pthread_detach() will indicate that the thread resources
106 ret = pthread_detach(pthread_self());
150 /* for detached scenarii, we will call pthread_detach from inside the thread.
151 for joinable scenarii, we'll call pthread_detach from this thread. */
196 ret = pthread_detach(child);
2-2.c 19 * pthread_detach() does not force a thread to terminate.
109 ret = pthread_detach(pthread_self());
114 /* Wait for this semaphore which indicates that pthread_detach has been called */
167 /* for detached scenarii, we will call pthread_detach from inside the thread.
168 for joinable scenarii, we'll call pthread_detach from this thread. */
203 ret = pthread_detach(child);
235 ("pthread_detach made the thread terminate");
  /external/google-breakpad/src/client/solaris/handler/
minidump_test.cc 67 pthread_detach(reporter_thread);
exception_handler_test.cc 81 pthread_detach(h);
89 pthread_detach(h);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_init/
2-1.c 17 * 4. Pthread_detach() to test this. It should
76 /* If pthread_detach fails, that means that the test fails as well. */
77 ret_val = pthread_detach(new_th);
85 /* pthread_detach() failed for another reason. */
87 printf("Error in pthread_detach(), error: %d\n",
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_setdetachstate/
2-1.c 11 * thread by the pthread_detach() or pthread_join() function is an error.
18 * 4. Call pthread_detach() and pthread_join() on this thread, it should give
60 /* If pthread_join() or pthread_detach fail, that means that the
69 ret_val = pthread_detach(new_th);
  /external/regex-re2/util/
thread.cc 30 pthread_detach(pid_);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_create/
3-1.c 20 * is joinable, and so calling the functions pthread_detach() should not fail.
86 ret = pthread_detach(new_th);
89 "pthread_detach() failed on joinable thread: %s\n",
  /external/valgrind/memcheck/tests/
reach_thread_register.c 51 pthread_detach(thr);
  /external/deqp/framework/delibs/dethread/unix/
deThreadUnix.c 120 pthread_detach(thread->thread);
135 int ret = pthread_detach(thread->thread);
  /external/fio/
gettime-thread.c 84 ret = pthread_detach(gtod_thread);

Completed in 590 milliseconds

1 2 3 4 5 6 7 8 910