Prev
Open Object Rexx
Next
Code style
dark
electric
light
print
rgfdark
rgflight
tokio-day
tokio-night
vim-dark-blue
vim-dark-darkblue
vim-dark-desert
vim-dark-elflord
vim-dark-evening
vim-dark-industry
vim-dark-koehler
vim-dark-murphy
vim-dark-pablo
vim-dark-ron
vim-dark-slate
vim-dark-torte
vim-light-delek
vim-light-morning
vim-light-peachpuff
vim-light-shine
vim-light-zellner
8.53. SysSetPriority
Changes the priority of the current process. A return code of 0 indicates no error.
Parameters:
class
The new process priority class. The allowed classes are:
0 or "IDLE"
Idle time priority
1 or "NORMAL"
Regular priority
2 or "HIGH"
High or time-critical priority
3 or "REALTIME"
Real-time priority
delta
The change applied to the process priority level.
delta
must be in the range -15 to +15. It can also be a symbolic name:
"IDLE" for -15
"LOWEST" for -2
"BELOW_NORMAL" for -1
"NORMAL" for 0
"ABOVE_NORMAL" for 1
"HIGHEST" for 2
"TIME_CRITICAL" for 15
0
No errors.
Other
An
operating system error code
. On Windows, this may be one of the following, but could be others.
307
Invalid priority class.
Prev
8.52. SysSetFileDateTime
Up
Home
Next
8.54. SysShutdownSystem (Windows only)