diff options
author | ivoras <ivoras@FreeBSD.org> | 2010-03-03 13:29:39 +0000 |
---|---|---|
committer | ivoras <ivoras@FreeBSD.org> | 2010-03-03 13:29:39 +0000 |
commit | 8fcfbfddca984ab42754b8807ddd5edfd7de8fbf (patch) | |
tree | 4345c93187e3c67b429ad01acca7611328723afb | |
parent | 9fc954825060d3be6e60bec0110fecd0e063d1d7 (diff) | |
download | FreeBSD-src-8fcfbfddca984ab42754b8807ddd5edfd7de8fbf.zip FreeBSD-src-8fcfbfddca984ab42754b8807ddd5edfd7de8fbf.tar.gz |
Make the comment follow style(9) format.
Spotted by: jhb
-rw-r--r-- | sys/sys/systm.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/sys/systm.h b/sys/sys/systm.h index 7c0dd8b..1d861f0 100644 --- a/sys/sys/systm.h +++ b/sys/sys/systm.h @@ -65,9 +65,11 @@ extern int maxusers; /* system tune hint */ extern int ngroups_max; /* max # of supplemental groups */ extern int vm_guest; /* Running as virtual machine guest? */ -/* Detected virtual machine guest types. The intention is to expand +/* + * Detected virtual machine guest types. The intention is to expand * and/or add to the VM_GUEST_VM type if specific VM functionality is - * ever implemented (e.g. vendor-specific paravirtualization features). */ + * ever implemented (e.g. vendor-specific paravirtualization features). + */ enum VM_GUEST { VM_GUEST_NO = 0, VM_GUEST_VM, VM_GUEST_XEN }; #ifdef INVARIANTS /* The option is always available */ |