Win32 Priority Class Mechanism and the START CommandLast reviewed: December 16, 1996Article ID: Q90910 |
The information in this article applies to:
SUMMARYThe Win32 priority class mechanism is exposed through CMD.EXE's START command. START accepts the following switches:
/LOW - Start the command in the idle priority class. /NORMAL - Start the command in the normal priority class (this is the default). /HIGH - Start the command in the high priority class. /REALTIME - Start the command in the real-time priority class.For a complete list of START switches, type the following command at the Windows NT command prompt:
start /?Win32 has also been modified to inherit priority class if the parent's priority class is idle; thus, a command such as
start /LOW nmakecauses build and all descendants (compiles, links, and so on) to run in the idle priority class. Use this method to do a real background build that will not interfere with anything else on your system. A command such as
start /HIGH nmakeruns BUILD.EXE in the high priority class, but all descendants run in the normal priority class.
MORE INFORMATIONBe very careful with START /HIGH and START /REALTIME. If you use either of these switches to start applications that require a lot of cycles, the applications will get all the cycles they ask for, that may cause the system to appear hung.
|
Additional reference words: 3.50 3.51 4.00
© 1998 Microsoft Corporation. All rights reserved. Terms of Use. |