diff options
author | Alfred M. Szmidt <ams@gnu.org> | 2004-12-01 06:17:18 +0000 |
---|---|---|
committer | Thomas Schwinge <tschwinge@gnu.org> | 2009-06-18 00:15:26 +0200 |
commit | 2316d2aa6b9bbbe3f3ad7c604d0cc18000d47b81 (patch) | |
tree | ac3cf2cfd69a704897fdee184161e90b7a839d52 /i386 | |
parent | 8f95dc8729437a6546a3777106f64d1c671d8ac3 (diff) |
2004-11-22 Guillem Jover <guillem@hadrons.org>
* bogus/mach_assert.h: Change #ifdef DEBUG to #ifndef NDEBUG
for assert et al.
* kern/assert.h: Likewise.
* kern/debug.h: Likewise.
* util/debug.h: Likewise.
* i386/i386/debug.h: Move dump_ss definition out of [DEBUG].
* linux/dev/glue/block.c (rdwr_full): Remove invalid assert.
Diffstat (limited to 'i386')
-rw-r--r-- | i386/i386/debug.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/i386/i386/debug.h b/i386/i386/debug.h index 37b2d40..135af7e 100644 --- a/i386/i386/debug.h +++ b/i386/i386/debug.h @@ -23,6 +23,10 @@ #ifndef _I386_DEBUG_ #define _I386_DEBUG_ +/* Dump a saved state. + Probably a good idea to have this around + even when DEBUG isn't turned on. */ +void dump_ss(struct i386_saved_state *st); #ifdef DEBUG @@ -37,11 +41,6 @@ and all registers are saved. */ #ifndef ASSEMBLER -/* Dump a saved state. - Probably a good idea to have this around - even when DEBUG isn't turned on. */ -void dump_ss(struct i386_saved_state *st); - #define DEBUG_TRACE _debug_trace(__FILE__,__LINE__) /* Reset the debug trace buffer so it contains no valid entries. */ |