Lines Matching defs:thread
2 * drawElements Thread Library
21 * \brief Win32 implementation of thread management.
35 /* Thread handle equals deThread in this implementation. */
74 HANDLE thread = 0;
82 thread = CreateThread(DE_NULL, 0, startThread, entry, 0, DE_NULL);
83 if (!thread)
90 SetThreadPriority(thread, mapPriority(attributes->priority));
92 return (deThread)thread;
95 deBool deThread_join (deThread thread)
97 HANDLE handle = (HANDLE)thread;
103 void deThread_destroy (deThread thread)
105 HANDLE handle = (HANDLE)thread;