Changeset 2487 in Sophya for trunk/SophyaLib/SysTools/resusage.h
- Timestamp:
- Dec 26, 2003, 12:19:21 PM (22 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/SysTools/resusage.h
r2322 r2487 17 17 { 18 18 public: 19 ResourceUsage(); 19 enum RU_ProcGrp {RU_Self=0, RU_Children=1, RU_All=2}; 20 // RU_Self: Resource usage for the process itself 21 // RU_Children: Resource usage for the child processes 22 // RU_All: Process itself and child processes 23 ResourceUsage(RU_ProcGrp pg=RU_Self); 20 24 ~ResourceUsage(); 21 25 … … 85 89 86 90 protected: 91 RU_ProcGrp procgrp; // Process group: self, child, all 87 92 uint_8 max_datasz; // Max data segment size (KBytes) 88 93 uint_8 max_rss; // Max resident size
Note:
See TracChangeset
for help on using the changeset viewer.