summaryrefslogtreecommitdiffstats
path: root/sys/pc98
diff options
context:
space:
mode:
authorjhb <jhb@FreeBSD.org>2000-09-14 20:15:16 +0000
committerjhb <jhb@FreeBSD.org>2000-09-14 20:15:16 +0000
commitebc05310cae248ce00d7073b614a7a7b26daf5be (patch)
treee0a07dc129d55e2ff53300a4d760b93fe1273d77 /sys/pc98
parent094011d95c4db982956963b5bd9133d7ad4c6b32 (diff)
downloadFreeBSD-src-ebc05310cae248ce00d7073b614a7a7b26daf5be.zip
FreeBSD-src-ebc05310cae248ce00d7073b614a7a7b26daf5be.tar.gz
Remove the mtx_t, witness_t, and witness_blessed_t types. Instead, just
use struct mtx, struct witness, and struct witness_blessed. Requested by: bde
Diffstat (limited to 'sys/pc98')
-rw-r--r--sys/pc98/i386/machdep.c4
-rw-r--r--sys/pc98/pc98/machdep.c4
2 files changed, 4 insertions, 4 deletions
diff --git a/sys/pc98/i386/machdep.c b/sys/pc98/i386/machdep.c
index c8d8d7e..e785546 100644
--- a/sys/pc98/i386/machdep.c
+++ b/sys/pc98/i386/machdep.c
@@ -267,8 +267,8 @@ static struct trapframe proc0_tf;
struct cpuhead cpuhead;
-mtx_t sched_lock;
-mtx_t Giant;
+struct mtx sched_lock;
+struct mtx Giant;
#define offsetof(type, member) ((size_t)(&((type *)0)->member))
diff --git a/sys/pc98/pc98/machdep.c b/sys/pc98/pc98/machdep.c
index c8d8d7e..e785546 100644
--- a/sys/pc98/pc98/machdep.c
+++ b/sys/pc98/pc98/machdep.c
@@ -267,8 +267,8 @@ static struct trapframe proc0_tf;
struct cpuhead cpuhead;
-mtx_t sched_lock;
-mtx_t Giant;
+struct mtx sched_lock;
+struct mtx Giant;
#define offsetof(type, member) ((size_t)(&((type *)0)->member))
OpenPOWER on IntegriCloud