summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
Diffstat (limited to 'sys')
-rw-r--r--sys/kern/kern_synch.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/kern/kern_synch.c b/sys/kern/kern_synch.c
index b2bd1006c11..29f7c0e84bd 100644
--- a/sys/kern/kern_synch.c
+++ b/sys/kern/kern_synch.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: kern_synch.c,v 1.5 1996/11/23 23:19:51 kstailey Exp $ */
+/* $OpenBSD: kern_synch.c,v 1.6 1997/01/19 03:56:46 briggs Exp $ */
/* $NetBSD: kern_synch.c,v 1.37 1996/04/22 01:38:37 christos Exp $ */
/*-
@@ -358,7 +358,7 @@ tsleep(ident, priority, wmesg, timo)
mi_switch();
#ifdef DDB
/* handy breakpoint location after process "wakes" */
- asm(".globl bpendtsleep ; bpendtsleep:");
+ __asm(".globl bpendtsleep ; bpendtsleep:");
#endif
resume:
curpriority = p->p_usrpri;
@@ -471,7 +471,7 @@ sleep(ident, priority)
mi_switch();
#ifdef DDB
/* handy breakpoint location after process "wakes" */
- asm(".globl bpendsleep ; bpendsleep:");
+ __asm(".globl bpendsleep ; bpendsleep:");
#endif
#ifdef KTRACE
if (KTRPOINT(p, KTR_CSW))