diff options
author | Miod Vallat <miod@cvs.openbsd.org> | 2002-04-29 07:35:25 +0000 |
---|---|---|
committer | Miod Vallat <miod@cvs.openbsd.org> | 2002-04-29 07:35:25 +0000 |
commit | 58b795ff3804354615895262e28a384888974748 (patch) | |
tree | eb5db6c8d5fc0eeb8ef3cbf2df312c1be54a9e4a /sys/arch/sun3 | |
parent | 0b9f832710043487d06d6c864886495eda2d4a68 (diff) |
Define placeholders for art's splassert() debugging stuff on all arches.
Currently as no-ops everywhere.
ok art@, deraadt@
Diffstat (limited to 'sys/arch/sun3')
-rw-r--r-- | sys/arch/sun3/include/psl.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/arch/sun3/include/psl.h b/sys/arch/sun3/include/psl.h index d6a5029747f..1cff44edf50 100644 --- a/sys/arch/sun3/include/psl.h +++ b/sys/arch/sun3/include/psl.h @@ -1,4 +1,4 @@ -/* $OpenBSD: psl.h,v 1.12 2002/03/14 01:26:46 millert Exp $ */ +/* $OpenBSD: psl.h,v 1.13 2002/04/29 07:35:23 miod Exp $ */ /* $NetBSD: psl.h,v 1.14 1998/11/24 17:07:54 kleink Exp $ */ /*- @@ -65,6 +65,9 @@ static __inline int _getsr(void); static __inline int _spl(int); static __inline int _splraise(int); +/* SPL asserts */ +#define splassert(wantipl) /* nothing */ + /* Get current sr value. */ static __inline int _getsr(void) |