Changeset 46
- Timestamp:
- 02/27/05 06:17:39 (4 years ago)
- Files:
-
- trunk/MacFaceLibrary/CPUUsage.cs (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/MacFaceLibrary/CPUUsage.cs
r25 r46 29 29 public int System 30 30 { 31 get { return user; }31 get { return system; } 32 32 } 33 33 34 34 public int Active 35 35 { 36 get { return user + system; }36 get { return 100 - idle; } 37 37 } 38 38
