vtk_limits
vtk_limits_get
Usage:
vtk_limits_get limitArray
Description:
Get the list of all limits for the current process. This procedure can be used typically in Tcl based environment
definitions. Not available on win64.
Note:
Check the documentation on how the limits can be controlled with the environment variables
VOV_LIMIT_stacksize, VOV_LIMIT_datasize, etc.
Examples:
vtk_limits_get array
parray array
array(coredumpsize) = 2147483647
array(cputime) = 2147483647
array(datasize) = 2147483647
array(filesize) = 2147483647
array(stacksize) = 8388608
vtk_limits_set
Usage:
vtk_limits_set limitArray
Description:
Set the limits for the current process based on the values of limitArray.
This procedure can be used typically in Tcl based environment definitions.
Not available on win64.
Note:
Check the documentation on how the limits can be controlled with the environment variables
VOV_LIMIT_stacksize, VOV_LIMIT_datasize, etc.
Example:
set array(stacksize) 100000
vtk_limits_set array