OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:mThreadArray
(Results
1 - 2
of
2
) sorted by null
/system/media/wilhelm/src/
ThreadPool.c
139
tp->
mThreadArray
= tp->mThreadTypical;
141
tp->
mThreadArray
= (pthread_t *) malloc(maxThreads * sizeof(pthread_t));
142
if (NULL == tp->
mThreadArray
) {
149
int err = pthread_create(&tp->
mThreadArray
[i], (const pthread_attr_t *) NULL,
186
ok = pthread_join(tp->
mThreadArray
[i], (void **) NULL);
235
if (tp->mThreadTypical != tp->
mThreadArray
&& NULL != tp->
mThreadArray
) {
236
free(tp->
mThreadArray
);
237
tp->
mThreadArray
= NULL;
ThreadPool.h
67
pthread_t *
mThreadArray
; ///< The worker threads
Completed in 196 milliseconds