diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-09-11 10:45:50 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1997-09-11 10:45:50 +0000 |
commit | 115ba911b5bc216029bd1acfa9cffd2b33ff2d82 (patch) | |
tree | c3cead57f9e893f9ffad563b4fc017c033c6948d /sys/arch/i386/isa | |
parent | 3659e7a9f3d4e0568fd407d22102c7f88fda20f5 (diff) |
toast BDB; netbsd
Diffstat (limited to 'sys/arch/i386/isa')
-rw-r--r-- | sys/arch/i386/isa/debug.h | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/sys/arch/i386/isa/debug.h b/sys/arch/i386/isa/debug.h deleted file mode 100644 index be0eee9959a..00000000000 --- a/sys/arch/i386/isa/debug.h +++ /dev/null @@ -1,24 +0,0 @@ -/* $NetBSD: debug.h,v 1.6 1994/10/27 04:17:06 cgd Exp $ */ - -#ifdef INTR_DEBUG -#define INTRLOCAL(label) label -#else /* not INTR_DEBUG */ -#define INTRLOCAL(label) L/**/label -#endif /* INTR_DEBUG */ - -#define BDBTRAP(name) \ - ss ; \ - cmpb $0,_bdb_exists ; \ - je 1f ; \ - testb $SEL_RPL_MASK,4(%esp) ; \ - jne 1f ; \ - ss ; \ -bdb_/**/name/**/_ljmp: ; \ - ljmp $0,$0 ; \ -1: - - .data - .globl _bdb_exists -_bdb_exists: - .long 0 - .text |