diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2006-05-02 21:44:40 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2006-05-02 21:44:40 +0000 |
commit | 20bc00acd08df5e54e47c4059a877bf36e60b16f (patch) | |
tree | e7e19990e06d2a227593e6f268752aab449ae0ff /sys/arch/m88k/include | |
parent | c748b89a682dccfe6acd9137914604bc89bf688a (diff) |
Replace db_{disable,enable}_interrupts with expanded version of themselves,
having macros for this is not worth doing.
Diffstat (limited to 'sys/arch/m88k/include')
-rw-r--r-- | sys/arch/m88k/include/db_machdep.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/sys/arch/m88k/include/db_machdep.h b/sys/arch/m88k/include/db_machdep.h index e37c6697c6c..5090f386cb5 100644 --- a/sys/arch/m88k/include/db_machdep.h +++ b/sys/arch/m88k/include/db_machdep.h @@ -1,4 +1,4 @@ -/* $OpenBSD: db_machdep.h,v 1.7 2005/11/20 22:07:07 miod Exp $ */ +/* $OpenBSD: db_machdep.h,v 1.8 2006/05/02 21:44:37 miod Exp $ */ /* * Mach Operating System * Copyright (c) 1993-1991 Carnegie Mellon University @@ -109,9 +109,6 @@ int m88k_print_instruction(u_int, long); /* db_disasm.c */ #define DB_AOUT_SYMBOLS -#define db_enable_interrupt(psr) set_psr(((psr) = get_psr()) & ~PSR_IND) -#define db_disable_interrupt(psr) set_psr(psr) - #endif /* DDB */ #endif /* _LOCORE */ |