HomeSort by relevance Sort by last modified time
    Searched refs:mClosureArray (Results 1 - 2 of 2) sorted by null

  /frameworks/wilhelm/src/
ThreadPool.c 126 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...]
ThreadPool.h 62 Closure **mClosureArray; ///< The circular buffer of closures

Completed in 22 milliseconds