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

/frameworks/wilhelm/src/
H A DThreadPool.h27 /** Closure handlers */
34 /** \brief Closure represents a deferred computation */
48 } Closure; typedef in typeref:struct:__anon1599
62 Closure **mClosureArray; ///< The circular buffer of closures
63 Closure **mClosureFront, **mClosureRear;
66 Closure *mClosureTypical[CLOSURE_TYPICAL+1];
91 extern Closure *ThreadPool_remove(ThreadPool *tp);
H A DThreadPool.c28 Closure *pClosure = ThreadPool_remove(tp);
34 const Closure closure = *pClosure;
128 tp->mClosureArray = (Closure **) malloc((maxClosures + 1) * sizeof(Closure *));
193 Closure **oldFront = tp->mClosureFront;
195 Closure **newFront = oldFront;
198 Closure *pClosure = *oldFront;
255 Closure *closure = (Closure *) malloc(sizeof(Closure));
[all...]

Completed in 28 milliseconds