OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:detach_state
(Results
1 - 6
of
6
) sorted by null
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_getdetachstate/
1-1.c
26
int
detach_state
;
local
36
if (pthread_attr_getdetachstate(&new_attr, &
detach_state
) != 0) {
41
if (
detach_state
== PTHREAD_CREATE_JOINABLE) {
1-2.c
30
int
detach_state
;
local
47
if (pthread_attr_getdetachstate(&new_attr, &
detach_state
) != 0) {
52
if (
detach_state
== PTHREAD_CREATE_DETACHED) {
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_init/
1-1.c
30
int
detach_state
;
local
41
if (pthread_attr_getdetachstate(&new_attr, &
detach_state
) != 0) {
46
if (
detach_state
== PTHREAD_CREATE_JOINABLE) {
/external/ltp/testcases/open_posix_testsuite/conformance/interfaces/pthread_attr_setdetachstate/
1-1.c
37
int
detach_state
;
local
53
if (pthread_attr_getdetachstate(&new_attr, &
detach_state
) != 0) {
58
if (
detach_state
== PTHREAD_CREATE_JOINABLE) {
1-2.c
37
int
detach_state
;
local
53
if (pthread_attr_getdetachstate(&new_attr, &
detach_state
) != 0) {
58
if (
detach_state
== PTHREAD_CREATE_DETACHED) {
/bionic/tests/
pthread_test.cpp
237
int
detach_state
;
local
238
ASSERT_EQ(0, pthread_attr_getdetachstate(&attr, &
detach_state
));
240
ASSERT_EQ(is_detached, (
detach_state
== PTHREAD_CREATE_DETACHED));
[
all
...]
Completed in 640 milliseconds