mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
Style enum obj_type
Put each type into dedicated line, which makes addition of new types cleaner. Reviewed by: markj Tested by: pho Sponsored by: The FreeBSD Foundation MFC after: 1 week Differential revision: https://reviews.freebsd.org/D30070
This commit is contained in:
parent
a7c198a24b
commit
838adc533f
1 changed files with 10 additions and 2 deletions
12
sys/vm/vm.h
12
sys/vm/vm.h
|
|
@ -88,8 +88,16 @@ typedef u_char vm_prot_t; /* protection codes */
|
|||
#define VM_PROT_RW (VM_PROT_READ|VM_PROT_WRITE)
|
||||
#define VM_PROT_DEFAULT VM_PROT_ALL
|
||||
|
||||
enum obj_type { OBJT_DEFAULT, OBJT_SWAP, OBJT_VNODE, OBJT_DEVICE, OBJT_PHYS,
|
||||
OBJT_DEAD, OBJT_SG, OBJT_MGTDEVICE };
|
||||
enum obj_type {
|
||||
OBJT_DEFAULT,
|
||||
OBJT_SWAP,
|
||||
OBJT_VNODE,
|
||||
OBJT_DEVICE,
|
||||
OBJT_PHYS,
|
||||
OBJT_DEAD,
|
||||
OBJT_SG,
|
||||
OBJT_MGTDEVICE,
|
||||
};
|
||||
typedef u_char objtype_t;
|
||||
|
||||
union vm_map_object;
|
||||
|
|
|
|||
Loading…
Reference in a new issue