Jump to letter: [
          
            4ABCDEFGHIJKLMNOPQRSTUVWXYZ
          ]
        
        perl-BSD-Resource: BSD-Resource - BSD process resource limit and priority functions
        
        
            | Name: | perl-BSD-Resource | Vendor: | Jarkko Hietaniemi <Cjhi@iki.fi> | 
        
            | Version: | 1.24 | License: | Artistic | 
        
            | Release: | 1 | URL: | http://www.cpan.org | 
        
        
        - Summary
- use BSD::Resource;
	
	
	
	($usertime, $systemtime,
	 $maxrss, $ixrss, $idrss, $isrss, $minflt, $majflt, $nswap,
	 $inblock, $oublock, $msgsnd, $msgrcv,
	 $nsignals, $nvcsw, $nivcsw) = getrusage($ru_who);
	$rusage = getrusage($ru_who);
	
	
	
	($nowsoft, $nowhard) = getrlimit($resource);
	$rlimit = getrlimit($resource);
	$success = setrlimit($resource, $newsoft, $newhard);
	
	
	
	$nowpriority = getpriority($pr_which, $pr_who);
	$success = setpriority($pr_which, $pr_who, $priority);
	
	
	$rlimits = get_rlimits();
Changelog
        
            - * Wed Mar 17 18:00:00 2004 root@lxdev13
- - Initial build.