Title: | Get or Set UNIX Niceness |
---|---|
Description: | Get or set UNIX priority (niceness) of running R process. |
Authors: | Charles J. Geyer <[email protected]>. |
Maintainer: | Charles J. Geyer <[email protected]> |
License: | MIT + file LICENSE |
Version: | 0.4-2 |
Built: | 2024-11-09 06:11:08 UTC |
Source: | CRAN |
Get or Set UNIX Priority (Niceness) of this R process.
get.my.priority() set.my.priority(priority = 15)
get.my.priority() set.my.priority(priority = 15)
priority |
The UNIX priority, also called niceness, what the
UNIX commands |
Sets the priority of itself, the unix process that is executing this
R code. The command was written for use with the snow
package (for nicing slaves), using syntax something like
invisible(clusterEvalQ(cl, set.my.priority()))
assuming a cluster cl
has already been set up. It may also
be useful in other situations.
get.my.priority
returns the priority.
set.my.priority
returns no value. It has the side effect
of setting the priority.