Home
last modified time | relevance | path

Searched refs:MW_DWORD (Results 1 – 6 of 6) sorted by relevance

/TaskScheduler/Scheduler/Include/Platform/Windows/
H A DMicroWindows.h47 typedef DWORD MW_DWORD; typedef
102 typedef unsigned long MW_DWORD; typedef
134 MW_DWORD dwPageSize;
136 MW_DWORD dwNumberOfProcessors;
163 MW_DWORD ContextFlags;
195 MW_DWORD ContextFlags;
197 MW_DWORD Eip;
199 MW_DWORD Esp;
260 MW_WINBASEAPI MW_DWORD MW_WINAPI SetThreadIdealProcessor(MW_HANDLE hThread, MW_DWORD dwIdealProcess…
273 MW_WINBASEAPI MW_DWORD MW_WINAPI WaitForSingleObject(MW_HANDLE hHandle, MW_DWORD dwMilliseconds);
[all …]
H A DMTThread.h44 MW_DWORD id;
114 static MW_DWORD __stdcall ThreadFuncInternal(void *pThread) in ThreadFuncInternal()
167 MW_DWORD res = ::SetThreadIdealProcessor(thread, cpuCore);
169 MT_ASSERT(res != (MW_DWORD)-1, "SetThreadIdealProcessor failed!");
179 MT_ASSERT(res != (MW_DWORD)-1, "ResumeThread failed!");
200 const MW_DWORD MW_MSVC_EXCEPTION = 0x406D1388; in SetThreadName()
205 MW_DWORD dwType; // Must be 0x1000. in SetThreadName()
207 MW_DWORD dwThreadID; // Thread ID (-1=caller thread). in SetThreadName()
208 MW_DWORD dwFlags; // Reserved for future use, must be zero. in SetThreadName()
235 MW_DWORD res = ::SetThreadIdealProcessor( ::GetCurrentThread(), cpuCore);
[all …]
H A DMTEventUser.h143 MW_BOOL ret = ::SleepConditionVariableCS(&condition, &criticalSection, (MW_DWORD)milliseconds); in Wait()
148 MW_DWORD err = ::GetLastError(); in Wait()
H A DMicroWindows.cpp52 static_assert(sizeof(MW_DWORD) == sizeof(DWORD), "MW_DWORD != DWORD");
53 static_assert(sizeof(MW_DWORD) == sizeof(uint32), "MW_DWORD != uint32");
H A DMTEventKernel.h84 MW_DWORD res = WaitForSingleObject(eventHandle, milliseconds); in Wait()
/TaskScheduler/Scheduler/Source/
H A DMTDefaultAppInterop.cpp123 MW_DWORD oldProtect = 0; in AllocStack()