The SuspendThread function suspends the specified thread.
DWORD SuspendThread(
HANDLE hThread |
// handle to the thread |
); |
Windows NT: The handle must have THREAD_SUSPEND_RESUME access. For more information, see Thread Objects.
If the function succeeds, the return value is the thread’s previous suspend count; otherwise, it is 0xFFFFFFFF. To get extended error information, use the GetLastError function.
If the function succeeds, execution of the specified thread is suspended and the thread’s suspend count is incremented.
Suspending a thread causes the thread to stop executing user-mode (application) code.
Each thread has a suspend count (with a maximum value of MAXIMUM_SUSPEND_COUNT). If the suspend count is greater than zero, the thread is suspended; otherwise, the thread is not suspended and is eligible for execution. Calling SuspendThread causes the target thread’s suspend count to be incremented. Attempting to increment past the maximum suspend count causes an error without incrementing the count.
The ResumeThread function decrements the suspend count of a suspended thread.
file: /Techref/os/win/api/win32/func/src/f87_11.htm, 2KB, , updated: 2000/4/7 11:19, local time: 2024/11/5 00:36,
3.135.221.112:LOG IN ©2024 PLEASE DON'T RIP! THIS SITE CLOSES OCT 28, 2024 SO LONG AND THANKS FOR ALL THE FISH!
|
©2024 These pages are served without commercial sponsorship. (No popup ads, etc...).Bandwidth abuse increases hosting cost forcing sponsorship or shutdown. This server aggressively defends against automated copying for any reason including offline viewing, duplication, etc... Please respect this requirement and DO NOT RIP THIS SITE. Questions? <A HREF="http://linistepper.com/techref/os/win/api/win32/func/src/f87_11.htm"> SuspendThread</A> |
Did you find what you needed? |