diff options
author | 2004-09-15 21:28:34 +0000 | |
---|---|---|
committer | 2004-09-15 21:28:34 +0000 | |
commit | 6fc320c092d7a159807b52e6137eceba83d5d450 (patch) | |
tree | d5064f00b4368aee01c5e9a3e02e76faf678b76c | |
parent | ARGSUSED, remove unused, ... (diff) | |
download | wireguard-openbsd-6fc320c092d7a159807b52e6137eceba83d5d450.tar.xz wireguard-openbsd-6fc320c092d7a159807b52e6137eceba83d5d450.zip |
force ordering in splraise
-rw-r--r-- | sys/arch/hppa/include/intr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/hppa/include/intr.h b/sys/arch/hppa/include/intr.h index a98507fd803..9f58301fc70 100644 --- a/sys/arch/hppa/include/intr.h +++ b/sys/arch/hppa/include/intr.h @@ -1,4 +1,4 @@ -/* $OpenBSD: intr.h,v 1.17 2004/04/07 18:24:19 mickey Exp $ */ +/* $OpenBSD: intr.h,v 1.18 2004/09/15 21:28:34 mickey Exp $ */ /* * Copyright (c) 2002-2004 Michael Shalayeff @@ -92,7 +92,7 @@ splraise(int ncpl) if (ocpl < ncpl) cpl = ncpl; - __asm __volatile ("nop" : "+r" (cpl)); + __asm __volatile ("sync" : "+r" (cpl)); return (ocpl); } |