Description
Type string READ/WRITE
runptyflags is a modifiable copy of the ptyflags input variable. Use it to close stdin to prevent stdin on the runtime environment.
Example
if ( basename(runcommand) == "appl_home")
{
# close stdin and prevent the user from providing any input
# for a command that is only intended to be run in batch mode.
runptyflags &= | 0x1;
}
Description
Type string WRITABLE
runrlimit_as is a modifiable copy of the rlimit_as input variable. It controls the maximum memory that is available to a process.
Description
Type string WRITABLE
runrlimit_core is a modifiable copy of the rlimit_core input variable. It controls the maximum size of a core file.
Description
Type string WRITABLE
runrlimit_cpu is a modifiable copy of the rlimit_cpu input variable. It controls the maximum size CPU time of a process.