diff options
author | meem <none@none> | 2005-12-13 13:12:26 -0800 |
---|---|---|
committer | meem <none@none> | 2005-12-13 13:12:26 -0800 |
commit | ae35285a4e0fe9ad6a7ffd73227903966dab4c59 (patch) | |
tree | fda95ff8db7b21196be549ebaf84c35bc7d07460 /usr/src/uts/common/sys/debug.h | |
parent | fb1354ed4c9fee45e038d38a155ea6fb11ee17bb (diff) | |
download | illumos-joyent-ae35285a4e0fe9ad6a7ffd73227903966dab4c59.tar.gz |
4843552 the definition of MONITOR should be removed from debug.h
6356825 queue_t locking comments are totally dated
6358745 SUNW_network_rcm.so`net_notify_event looks imposing but does nothing
6359875 gcc and cmd/streams still don't get along
6360063 <sys/strft.h> should not be exposed via <sys/stream.h>
Diffstat (limited to 'usr/src/uts/common/sys/debug.h')
-rw-r--r-- | usr/src/uts/common/sys/debug.h | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/usr/src/uts/common/sys/debug.h b/usr/src/uts/common/sys/debug.h index cc419e5132..c156e7c463 100644 --- a/usr/src/uts/common/sys/debug.h +++ b/usr/src/uts/common/sys/debug.h @@ -95,7 +95,6 @@ extern void assfail3(const char *, uintmax_t, const char *, uintmax_t, __FILE__, __LINE__); \ _NOTE(CONSTCOND) } while (0) - #define VERIFY3S(x, y, z) VERIFY3_IMPL(x, y, z, int64_t) #define VERIFY3U(x, y, z) VERIFY3_IMPL(x, y, z, uint64_t) #define VERIFY3P(x, y, z) VERIFY3_IMPL(x, y, z, uintptr_t) @@ -116,12 +115,6 @@ extern void debug_enter(char *); #endif /* _KERNEL */ -#ifdef MONITOR -#define MONITOR(id, w1, w2, w3, w4) monitor(id, w1, w2, w3, w4) -#else -#define MONITOR(id, w1, w2, w3, w4) -#endif - #if defined(DEBUG) && !defined(__sun) /* CSTYLED */ #define STATIC |