mirror of
https://github.com/reactos/reactos.git
synced 2025-01-02 20:43:18 +00:00
Removed ASSERT_KM macro. It's not used any longer.
svn path=/trunk/; revision=10619
This commit is contained in:
parent
3f9427ed02
commit
5eef6d16e3
1 changed files with 0 additions and 2 deletions
|
@ -53,7 +53,6 @@ extern DWORD DebugTraceLevel;
|
|||
#define ASSERT(x) if (!(x)) { AFD_DbgPrint(MIN_TRACE, ("Assertion "#x" failed at %s:%d\n", __FILE__, __LINE__)); KeBugCheck(0); }
|
||||
#endif /* NASSERT */
|
||||
|
||||
#define ASSERT_KM(x) ASSERT((x) >= 0xC0000000)
|
||||
#define ASSERT_IRQL(x) ASSERT(KeGetCurrentIrql() <= (x))
|
||||
|
||||
#else /* DBG */
|
||||
|
@ -69,7 +68,6 @@ extern DWORD DebugTraceLevel;
|
|||
|
||||
#undef assert
|
||||
#define assert(x) ASSERT(x)
|
||||
#define assert_km(x) ASSERT_KM(x)
|
||||
#define assert_irql(x) ASSERT_IRQL(x)
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue