Updating ITFoundation to include updates spurred by Haven development.
[ITFoundation.git] / ITVirtualMemoryInfo.h
old mode 100755 (executable)
new mode 100644 (file)
index f0e3bb8..8179938
@@ -1,30 +1,25 @@
 /*
  *     ITFoundation
- *     ITVirtualMemoryInfo
+ *     ITVirtualMemoryInfo.h
  *
- *     Class that provides utilities for getting information
- *     on Mac OS X's mach kernel's Virtual Memory settings
- *     and status
+ *     Class that provides utilities for getting information on Mac OS X's mach
+ *             kernel's virtual memory settings and status.
  *
- *     Original Author : Joseph Spiros <joseph.spiros@ithinksw.com>
- *     Responsibility  : Joseph Spiros <joseph.spiros@ithinksw.com>
- *                     : Matt Judy <matt.judy@ithinksw.com>
+ *     Copyright (c) 2005 by iThink Software.
+ *     All Rights Reserved.
  *
- *     Copyright (c) 2002 iThink Software.
- *     All Rights Reserved
+ *     $Id$
  *
  */
 
 #import <Foundation/Foundation.h>
 #import <mach/mach.h>
 
-/* For this platform, as of this Mach version,
- * the default page size is 4096, or 4k */
+/* For Mac OS X the default page size is 4096 (4K) */
 #define DEFAULT_PAGE_SIZE 4096
 
-
 @interface ITVirtualMemoryInfo : NSObject {
-    vm_statistics_data_t stat;
+       vm_statistics_data_t stat;
 }
 
 - (id)init;
@@ -43,4 +38,4 @@
 - (int)lookups;
 - (int)hitratePercentage;
 
-@end
+@end
\ No newline at end of file