Searched refs:mClosureArray (Results 1 - 2 of 2) sorted by relevance

/frameworks/wilhelm/src/
H A DThreadPool.c126 tp->mClosureArray = tp->mClosureTypical;
128 tp->mClosureArray = (Closure **) malloc((maxClosures + 1) * sizeof(Closure *));
129 if (NULL == tp->mClosureArray) {
134 tp->mClosureFront = tp->mClosureArray;
135 tp->mClosureRear = tp->mClosureArray;
196 if (++newFront == &tp->mClosureArray[tp->mMaxClosures + 1])
197 newFront = tp->mClosureArray;
229 if (tp->mClosureTypical != tp->mClosureArray && NULL != tp->mClosureArray) {
230 free(tp->mClosureArray);
[all...]
H A DThreadPool.h62 Closure **mClosureArray; ///< The circular buffer of closures member in struct:__anon1601

Completed in 548 milliseconds