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/powerpc | |
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/powerpc')
-rw-r--r-- | sys/arch/powerpc/include/intr.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/arch/powerpc/include/intr.h b/sys/arch/powerpc/include/intr.h index 3ef30d354f7..2daaaf1a71c 100644 --- a/sys/arch/powerpc/include/intr.h +++ b/sys/arch/powerpc/include/intr.h @@ -1,4 +1,4 @@ -/* $OpenBSD: intr.h,v 1.17 2002/03/14 01:26:42 millert Exp $ */ +/* $OpenBSD: intr.h,v 1.18 2002/04/29 07:35:22 miod Exp $ */ /* * Copyright (c) 1997 Per Fogelstrom, Opsycon AB and RTMX Inc, USA. @@ -67,6 +67,9 @@ void do_pending_int(void); volatile extern int cpl, ipending, astpending, tickspending; extern int imask[7]; +/* SPL asserts */ +#define splassert(wantipl) /* nothing */ + /* * Reorder protection in the following inline functions is * achived with an empty asm volatile statement. the compiler |