Home
last modified time | relevance | path

Searched refs:CLoopThread (Results 1 – 2 of 2) sorted by relevance

/external/lzma/C/
DMtCoder.h21 } CLoopThread; typedef
23 void LoopThread_Construct(CLoopThread *p);
24 void LoopThread_Close(CLoopThread *p);
25 WRes LoopThread_Create(CLoopThread *p);
26 WRes LoopThread_StopAndWait(CLoopThread *p);
27 WRes LoopThread_StartSubThread(CLoopThread *p);
28 WRes LoopThread_WaitSubThread(CLoopThread *p);
59 CLoopThread thread;
DMtCoder.c8 void LoopThread_Construct(CLoopThread *p) in LoopThread_Construct()
15 void LoopThread_Close(CLoopThread *p) in LoopThread_Close()
24 CLoopThread *p = (CLoopThread *)pp; in LoopThreadFunc()
37 WRes LoopThread_Create(CLoopThread *p) in LoopThread_Create()
45 WRes LoopThread_StopAndWait(CLoopThread *p) in LoopThread_StopAndWait()
53 WRes LoopThread_StartSubThread(CLoopThread *p) { return Event_Set(&p->startEvent); } in LoopThread_StartSubThread()
54 WRes LoopThread_WaitSubThread(CLoopThread *p) { return Event_Wait(&p->finishedEvent); } in LoopThread_WaitSubThread()
288 CLoopThread *lt = &t->thread; in MtCoder_Code()