sysmgr_runstate_burst()

Updated: October 28, 2024

Ask the system to turn on dynamically offlined CPUs

Synopsis:

#include <sys/sysmgr.h>

int sysmgr_runstate_burst( const unsigned ms_length );

Arguments:

ms_length
The length of time, in milliseconds, that the user expects the system to be busy, or 0 to cancel the burst-mode request. The time can be up to 65535 ms.
The function applies a 16-bit mask to ms_length, so even if the value is more than 65535 ms, no error occurs.

Library:

libc

Use the -l c option to qcc to link against this library. This library is usually included automatically.

Description:

Most of the time, the dynamic CPU-onlining algorithm works fine, but it can take up to 64 ms to decide that there's enough system load to turn on a dynamically offlined CPU, and sometimes we just don't want to wait that long. The sysmgr_runstate_burst() function tells the kernel that the system is about to get busy, and it should be turning on CPUs much sooner than it would normally.

Multiple threads can call the function, and burst mode remains in effect until the last time period expires. A thread can cancel its burst-mode request by calling sysmgr_runstate_burst() again with an argument of 0; any other thread requests remain in force.

In order to successfully call this function, your process must have the PROCMGR_AID_RUNSTATE_BURST ability enabled. For more information, see procmgr_ability().

Returns:

EOK on success. If an error occurs, the function can return any value listed in the Errors section.

Errors:

EAGAIN
A needed resource was unavailable.
ENOMEM
There was insufficient memory to complete the operation.
EPERM
The calling process doesn't have the required permission of PROCMGR_AID_RUNSTATE_BURST; see procmgr_ability().

Classification:

QNX Neutrino

Safety:  
Cancellation point No
Interrupt handler No
Signal handler Yes
Thread Yes