summaryrefslogtreecommitdiff
path: root/sys/arch
diff options
context:
space:
mode:
authorPhilip Guenther <guenther@cvs.openbsd.org>2015-09-30 05:44:33 +0000
committerPhilip Guenther <guenther@cvs.openbsd.org>2015-09-30 05:44:33 +0000
commit7aa9061d07d03e28f129787ccd93e8cba1365f07 (patch)
treea256dc70893de53d4cbc5491788bf900820afdb0 /sys/arch
parent0f2b80f224ea1be987dd2871842fb451cfcb8b12 (diff)
How about I delete _all_ the BITFIELDTYPE comments?
Diffstat (limited to 'sys/arch')
-rw-r--r--sys/arch/amd64/include/segments.h24
1 files changed, 12 insertions, 12 deletions
diff --git a/sys/arch/amd64/include/segments.h b/sys/arch/amd64/include/segments.h
index 8d42d514430..0c6c8609d05 100644
--- a/sys/arch/amd64/include/segments.h
+++ b/sys/arch/amd64/include/segments.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: segments.h,v 1.13 2015/09/26 15:59:25 guenther Exp $ */
+/* $OpenBSD: segments.h,v 1.14 2015/09/30 05:44:32 guenther Exp $ */
/* $NetBSD: segments.h,v 1.1 2003/04/26 18:39:47 fvdl Exp $ */
/*-
@@ -128,17 +128,17 @@ struct mem_segment_descriptor {
* Gate descriptors (e.g. indirect descriptors)
*/
struct gate_descriptor {
-/*BITFIELDTYPE*/ u_int64_t gd_looffset:16;/* gate offset (lsb) */
-/*BITFIELDTYPE*/ u_int64_t gd_selector:16;/* gate segment selector */
-/*BITFIELDTYPE*/ u_int64_t gd_ist:3; /* IST select */
-/*BITFIELDTYPE*/ u_int64_t gd_xx1:5; /* reserved */
-/*BITFIELDTYPE*/ u_int64_t gd_type:5; /* segment type */
-/*BITFIELDTYPE*/ u_int64_t gd_dpl:2; /* segment descriptor priority level */
-/*BITFIELDTYPE*/ u_int64_t gd_p:1; /* segment descriptor present */
-/*BITFIELDTYPE*/ u_int64_t gd_hioffset:48;/* gate offset (msb) */
-/*BITFIELDTYPE*/ u_int64_t gd_xx2:8; /* reserved */
-/*BITFIELDTYPE*/ u_int64_t gd_zero:5; /* must be zero */
-/*BITFIELDTYPE*/ u_int64_t gd_xx3:19; /* reserved */
+ u_int64_t gd_looffset:16; /* gate offset (lsb) */
+ u_int64_t gd_selector:16; /* gate segment selector */
+ u_int64_t gd_ist:3; /* IST select */
+ u_int64_t gd_xx1:5; /* reserved */
+ u_int64_t gd_type:5; /* segment type */
+ u_int64_t gd_dpl:2; /* segment descriptor priority level */
+ u_int64_t gd_p:1; /* segment descriptor present */
+ u_int64_t gd_hioffset:48; /* gate offset (msb) */
+ u_int64_t gd_xx2:8; /* reserved */
+ u_int64_t gd_zero:5; /* must be zero */
+ u_int64_t gd_xx3:19; /* reserved */
} __packed;
/*