search for: objtype_t

Displaying 1 result from an estimated 1 matches for "objtype_t".

Did you mean: objtype
2003 Apr 09
0
Serious VM issues in 4.7, 4.8
In FreeBSD 4.7 and 4.8, the code for vm_object_allocate() in the file /usr/src/sys/vm/vm_object.c looks like: > 232 vm_object_t > 233 vm_object_allocate(type, size) > 234 objtype_t type; > 235 vm_size_t size; > 236 { > 237 vm_object_t result; > 238 > 239 result = (vm_object_t) zalloc(obj_zone); > 240 > 241 _vm_object_allocate(type, size, result); > 242 > 243 return (result); > 244...