Displaying 1 result from an estimated 1 matches for "thread_priority_highest".
2008 May 18
2
Pure win32-thread library?
...ndows::Synchronize
include Windows::Error
extend Windows::Synchronize
class Error < StandardError; end
@@mutex = CreateMutex(nil, false, nil)
ABOVE_NORMAL = THREAD_PRIORITY_ABOVE_NORMAL
BELOW_NORMAL = THREAD_PRIORITY_BELOW_NORMAL
HIGHEST = THREAD_PRIORITY_HIGHEST
IDLE = THREAD_PRIORITY_IDLE
LOWEST = THREAD_PRIORITY_LOWEST
NORMAL = THREAD_PRIORITY_NORMAL
CRITICAL = THREAD_PRIORITY_TIME_CRITICAL
VERSION = ''0.1.0''
WinThreadFunc = API::Callback.new(''L'', '...