aboutsummaryrefslogtreecommitdiff
path: root/include/mach_debug
diff options
context:
space:
mode:
Diffstat (limited to 'include/mach_debug')
-rw-r--r--include/mach_debug/mach_debug_types.defs10
-rw-r--r--include/mach_debug/slab_info.h10
2 files changed, 10 insertions, 10 deletions
diff --git a/include/mach_debug/mach_debug_types.defs b/include/mach_debug/mach_debug_types.defs
index c138dc40..fd940384 100644
--- a/include/mach_debug/mach_debug_types.defs
+++ b/include/mach_debug/mach_debug_types.defs
@@ -42,11 +42,11 @@ type cache_info_t = struct {
rpc_vm_size_t align;
rpc_vm_size_t buf_size;
rpc_vm_size_t slab_size;
- rpc_unsigned_long bufs_per_slab;
- rpc_unsigned_long nr_objs;
- rpc_unsigned_long nr_bufs;
- rpc_unsigned_long nr_slabs;
- rpc_unsigned_long nr_free_slabs;
+ rpc_long_natural_t bufs_per_slab;
+ rpc_long_natural_t nr_objs;
+ rpc_long_natural_t nr_bufs;
+ rpc_long_natural_t nr_slabs;
+ rpc_long_natural_t nr_free_slabs;
cache_name_t name;
};
type cache_info_array_t = array[] of cache_info_t;
diff --git a/include/mach_debug/slab_info.h b/include/mach_debug/slab_info.h
index 19a87307..0f6b5a2c 100644
--- a/include/mach_debug/slab_info.h
+++ b/include/mach_debug/slab_info.h
@@ -43,11 +43,11 @@ typedef struct cache_info {
rpc_vm_size_t align;
rpc_vm_size_t buf_size;
rpc_vm_size_t slab_size;
- rpc_unsigned_long bufs_per_slab;
- rpc_unsigned_long nr_objs;
- rpc_unsigned_long nr_bufs;
- rpc_unsigned_long nr_slabs;
- rpc_unsigned_long nr_free_slabs;
+ rpc_long_natural_t bufs_per_slab;
+ rpc_long_natural_t nr_objs;
+ rpc_long_natural_t nr_bufs;
+ rpc_long_natural_t nr_slabs;
+ rpc_long_natural_t nr_free_slabs;
char name[CACHE_NAME_MAX_LEN];
} cache_info_t;