OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:newattr
(Results
1 - 2
of
2
) sorted by null
/external/ltp/testcases/kernel/sched/clisrv/
pthserv.c
91
pthread_attr_t
newattr
;
local
132
if (pthread_attr_init(&
newattr
))
134
if (pthread_attr_setdetachstate(&
newattr
, PTHREAD_CREATE_DETACHED))
153
if (pthread_create(&th, &
newattr
, new_thread,
/external/ltp/testcases/misc/math/float/
main.c
108
pthread_attr_t
newattr
;
local
216
retval = pthread_attr_init(&
newattr
);
218
sys_error("main : attr_init(&
newattr
) FAILED", __LINE__);
220
if (pthread_attr_setstacksize(&
newattr
, stacksize))
223
retval = pthread_attr_setdetachstate(&
newattr
, PTHREAD_CREATE_JOINABLE);
225
sys_error("main : attr_setdetachstate(&
newattr
) FAILED",
254
retval = pthread_create(&threads[indice], &
newattr
,
Completed in 683 milliseconds