HomeSort by relevance Sort by last modified time
    Searched full:detachstate (Results 1 - 25 of 32) sorted by null

1 2

  /external/ltp/testcases/open_posix_testsuite/conformance/definitions/pthread_h/
12-1-buildonly.c 16 int *detachstate; variable
21 pthread_attr_getdetachstate(&a, detachstate);
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_getdetachstate/
assertions.xml 5 int pthread_attr_getdetachstate(const pthread_attr_t *attr, int *detachstate)
7 will get the detachstate attribute in the 'attr' object. The detach state
1-2.c 9 * shall get the detachstate attribute in the 'attr' object. The detach state
14 * make detachstate be PTHREAD_CREATE_JOINABLE.
17 * 3. Using pthread_attr_getdetachstate(), get the detachstate of the
38 /* Set the detachstate to PTHREAD_CREATE_DETACHED. */
1-1.c 9 * shall get the detachstate attribute in the 'attr' object. The detach state
14 * 2. Using pthread_attr_getdetachstate(), get the detachstate of the
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_init/
1-1.c 13 * attribute of the detachstate will be tested since the default value
19 * of the detachstate is PTHREAD_CREATE_JOINABLE (the default).
38 /* The test passes if the attribute object has a detachstate of
42 perror("Error obtaining the detachstate of the attribute\n");
assertions.xml 11 attribute of the detachstate will be tested since the default value
2-1.c 16 * set the default detachstate to PTHREAD_CREATE_JOINABLE.
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_setdetachstate/
assertions.xml 5 int pthread_attr_setdetachstate(const pthread_attr_t *attr, int *detachstate)
7 sets the detachstate attribute in the 'attr' object.
14 The default value of the detachstate attribute is
27 -[EINVAL] The value of detachstate was invalid
1-1.c 10 * shall set the detachstate attribute in the 'attr' object.
18 * The default value of the detachstate attribute shall be
23 * 2. Using pthread_attr_setdetachstate(), set the detachstate to
52 /* Check to see if the detachstate is truly PTHREAD_CREATE_JOINABLE. */
1-2.c 10 * shall set the detachstate attribute in the 'attr' object.
18 * The default value of the detachstate attribute shall be
23 * 2. Using pthread_attr_setdetachstate(), set the detachstate to
52 /* Check to see if the detachstate is truly PTHREAD_CREATE_DETACHED. */
4-1.c 11 * -[EINVAL] The value of detachstate was not valid
2-1.c 15 * 2. Using pthread_attr_setdetachstate(), set the detachstate to
  /external/valgrind/drd/tests/
pth_detached.c 42 int detachstate; local
50 assert(pthread_attr_getdetachstate(&attr, &detachstate) == 0);
51 assert(detachstate == PTHREAD_CREATE_DETACHED);
62 assert(pthread_attr_getdetachstate(&attr, &detachstate) == 0);
63 assert(detachstate == PTHREAD_CREATE_JOINABLE);
pth_detached_sem.c 47 int detachstate; local
57 assert(pthread_attr_getdetachstate(&attr, &detachstate) == 0);
58 assert(detachstate == PTHREAD_CREATE_DETACHED);
69 assert(pthread_attr_getdetachstate(&attr, &detachstate) == 0);
70 assert(detachstate == PTHREAD_CREATE_JOINABLE);
  /external/icu/icu4c/source/test/intltest/
simplethread.cpp 253 int detachstate = 0; // jdc30: detach state of zero causes local
258 pthread_attr_setdetachstate(&attr, &detachstate);
  /external/valgrind/drd/
drd_pthread_intercepts.c 222 int detachstate; member in struct:__anon37585
435 arg_copy.detachstate == PTHREAD_CREATE_JOINABLE);
550 thread_args.detachstate = PTHREAD_CREATE_JOINABLE;
553 if (pthread_attr_getdetachstate(attr, &thread_args.detachstate) != 0)
556 assert(thread_args.detachstate == PTHREAD_CREATE_JOINABLE
557 || thread_args.detachstate == PTHREAD_CREATE_DETACHED);
614 thread_args.detachstate = PTHREAD_CREATE_DETACHED;
616 thread_args.detachstate = PTHREAD_CREATE_JOINABLE;
    [all...]
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_detach/
1-2.c 146 "Unable to set detachstate back to joinable");
2-2.c 163 "Unable to set detachstate back to joinable");
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/testfrmw/
threads_scenarii.c 237 UNRESOLVED(ret, "Unable to set detachstate");
242 UNRESOLVED(ret, "Unable to get detachstate"
  /external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_create/
threads_scenarii.c 187 UNRESOLVED(ret, "Unable to set detachstate");
194 "Unable to get detachstate from initialized attribute");
  /external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_exit/
threads_scenarii.c 187 UNRESOLVED(ret, "Unable to set detachstate");
194 "Unable to get detachstate from initialized attribute");
  /external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_create/
1-5.c 31 * (*) The detachstate attribute is not tested cause this would mean a speculative test. Moreover, it is already tested elsewhere.
  /external/ltp/testcases/open_posix_testsuite/stress/threads/pthread_self/
threads_scenarii.c 254 UNRESOLVED(ret, "Unable to set detachstate");
261 "Unable to get detachstate from initialized attribute");
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.11-4.8/sysroot/usr/include/
pthread.h 278 (detachstate is PTHREAD_JOINABLE, scheduling policy is SCHED_OTHER,
    [all...]
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/
pthread.h 276 (detachstate is PTHREAD_JOINABLE, scheduling policy is SCHED_OTHER,
    [all...]

Completed in 987 milliseconds

1 2