Lines Matching defs:thread
2 * drawElements Thread Library
21 * \brief Win32 implementation of thread management.
34 /* Thread handle equals deThread in this implementation. */
73 HANDLE thread = 0;
81 thread = CreateThread(DE_NULL, 0, startThread, entry, 0, DE_NULL);
82 if (!thread)
89 SetThreadPriority(thread, mapPriority(attributes->priority));
91 return (deThread)thread;
94 deBool deThread_join (deThread thread)
96 HANDLE handle = (HANDLE)thread;
102 void deThread_destroy (deThread thread)
104 HANDLE handle = (HANDLE)thread;