[F90:]subroutine gSetSysPriority(pri) integer, intent(in) :: pri
Arguments
pri
Task priority
= GREALTIME,
Sets task to highest possible priority
= GHIGH,
Sets task to higher than normal
= GNORMAL,
(default)
= GLOW,
Sets task to lower than normal (not available under Windows)
= GIDLE,
Sets task into idle state
Description
The routine gSetSysPriority() sets the priority of the GINO application as described by the above settings. The routine is system dependent and some settings may have no effect in some environments.
Users should be warned that setting a task to GREALTIME will prevent all other applications operating including some system tasks such as responding to mouse movement. This should be used VERY sparingly.
The current system priority can be obtained using the routine gEnqSysPriority().