diff options
author | Joel Sing <jsing@cvs.openbsd.org> | 2011-01-14 13:09:46 +0000 |
---|---|---|
committer | Joel Sing <jsing@cvs.openbsd.org> | 2011-01-14 13:09:46 +0000 |
commit | 35f7bd696c550c677f2ff9b51d618109803b8640 (patch) | |
tree | 1ce29b18f8b2854ad6c12ef06c8f3c60c90e3987 /sys/arch/hppa/include | |
parent | 8fcb145607020c8660f282ce48f814c0603c6033 (diff) |
Provide an IPI to halt a CPU.
ok kettenis@ deraadt@ miod@
Diffstat (limited to 'sys/arch/hppa/include')
-rw-r--r-- | sys/arch/hppa/include/intr.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/sys/arch/hppa/include/intr.h b/sys/arch/hppa/include/intr.h index 8bb543c0ad1..aae95d7cf37 100644 --- a/sys/arch/hppa/include/intr.h +++ b/sys/arch/hppa/include/intr.h @@ -1,4 +1,4 @@ -/* $OpenBSD: intr.h,v 1.35 2010/12/21 14:56:23 claudio Exp $ */ +/* $OpenBSD: intr.h,v 1.36 2011/01/14 13:09:45 jsing Exp $ */ /* * Copyright (c) 2002-2004 Michael Shalayeff @@ -57,9 +57,10 @@ #ifdef MULTIPROCESSOR #define HPPA_IPI_NOP 0 -#define HPPA_IPI_FPU_SAVE 1 -#define HPPA_IPI_FPU_FLUSH 2 -#define HPPA_NIPI 3 +#define HPPA_IPI_HALT 1 +#define HPPA_IPI_FPU_SAVE 2 +#define HPPA_IPI_FPU_FLUSH 3 +#define HPPA_NIPI 4 #endif #if !defined(_LOCORE) && defined(_KERNEL) |