print ulimit

This commit is contained in:
Doug MacEachern 2005-07-08 01:27:12 +00:00
parent 545ec710e4
commit e945164266
1 changed files with 5 additions and 0 deletions

View File

@ -36,6 +36,11 @@ public class SysInfo extends SigarCommandBase {
//memory info
new Free(this.shell).output(args);
println("");
//system resource limits
println("System resource limits:");
new Ulimit(this.shell).output(args);
}
public static void main(String[] args) throws Exception {