|
Overview |
|
|
|
Group |
|
|
|
Quick Info
Windows NT
| Yes
| Win95
| No
| Win32s
| No
| Import Library
| kernel32.lib
| Header File
| winbase.h
| Unicode
| No
| Platform Notes
| None
|
|
|
SwitchToThread
[New - Windows NT]
The SwitchToThread function causes the calling thread to yield execution to another thread that
is ready to run on the current processor. The operating system selects the
thread to yield to.
BOOL SwitchToThread(VOID)
Parameters
This function has no parameters.
Return Values
If calling the SwitchToThread function causes the operating system to switch execution to another thread,
the return value is nonzero.
If there are no other threads ready to execute, the operating system does not
switch execution to another thread, and the return value is zero.
Remarks
The yield of execution is in effect for up to one thread-scheduling time
slice. After that, the operating system reschedules execution for the yielding
thread. The rescheduling is determined by the priority of the yielding thread and
the status of other threads that are available to run.
Note that the yield of execution is limited to the processor of the calling
thread. The operating system will not switch execution to another processor, even
if that processor is idle or is running a thread of lower priority.
See Also
SuspendThread
Related Links
Software for Delphi and C++ Builder developers
Software for Visual Studio .NET developers
Software for Visual Basic 6 developers
Delphi Tips&Tricks
MegaDetailed.NET
TMS Scripter Studio Pro components for Delphi/C++Builder
More Online Helps
Win32 Multimedia Programmer's Reference (mmedia.hlp)
OLE Programmer's Reference (ole.hlp)
Microsoft Windows Pen API Programmer's Reference (penapi.hlp)
Microsoft Windows Sockets 2 Reference (sock2.hlp)
Microsoft Windows Telephony API (TAPI) Programmer's Reference (tapi.hlp)
Unix Manual Pages
|