aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorMatt Macy <mmacy@FreeBSD.org>2018-05-19 05:12:57 +0000
committerMatt Macy <mmacy@FreeBSD.org>2018-05-19 05:12:57 +0000
commitaf2ffa3d526919ea37dd7871b13f0e5f98efdd74 (patch)
tree118a0a038c4f3467c97f05e67b230d3190742806 /sys
parentba3f7276c035dec45589e1eb257661f83dad9a2b (diff)
Notes
Diffstat (limited to 'sys')
-rw-r--r--sys/sys/systm.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/sys/sys/systm.h b/sys/sys/systm.h
index 3fa8e692e278..995e06774d64 100644
--- a/sys/sys/systm.h
+++ b/sys/sys/systm.h
@@ -85,7 +85,6 @@ void kassert_panic(const char *fmt, ...) __printflike(1, 2);
#endif
#ifdef INVARIANTS /* The option is always available */
-#define DBGSET(lhs, rhs) lhs = (rhs)
#define KASSERT(exp,msg) do { \
if (__predict_false(!(exp))) \
kassert_panic msg; \
@@ -97,7 +96,6 @@ void kassert_panic(const char *fmt, ...) __printflike(1, 2);
} \
} while (0)
#else
-#define DBGSET(lhs, rhs) rhs
#define KASSERT(exp,msg) do { \
} while (0)