aboutsummaryrefslogtreecommitdiff
path: root/sys/sys/smp.h
diff options
context:
space:
mode:
authorSteve Passe <fsmp@FreeBSD.org>1997-08-18 03:35:59 +0000
committerSteve Passe <fsmp@FreeBSD.org>1997-08-18 03:35:59 +0000
commit7e48002a9239a9ab6eaa8a1de90195ddac1eaa89 (patch)
tree55c85b64c6718c680f21e9f5d69fb03fba2f0337 /sys/sys/smp.h
parent80f69e57cde6c5c82fe2b53a0567c6cca0934605 (diff)
downloadsrc-7e48002a9239a9ab6eaa8a1de90195ddac1eaa89.tar.gz
src-7e48002a9239a9ab6eaa8a1de90195ddac1eaa89.zip
Removed volatile from arg to simple_lock & friends.
Notes
Notes: svn path=/head/; revision=28352
Diffstat (limited to 'sys/sys/smp.h')
-rw-r--r--sys/sys/smp.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/sys/smp.h b/sys/sys/smp.h
index a29e6c837bd5..fc55218896e5 100644
--- a/sys/sys/smp.h
+++ b/sys/sys/smp.h
@@ -6,7 +6,7 @@
* this stuff is worth it, you can buy me a beer in return. Poul-Henning Kamp
* ----------------------------------------------------------------------------
*
- * $Id: smp.h,v 1.20 1997/08/15 02:14:45 smp Exp smp $
+ * $Id: smp.h,v 1.25 1997/08/15 02:34:32 fsmp Exp $
*
*/
@@ -87,9 +87,9 @@ void io_apic_write __P((int, int, u_int));
/* functions in simplelock.s */
#include <machine/param.h>
void s_lock_init __P((struct simplelock *));
-void s_lock __P((__volatile struct simplelock *));
-int s_lock_try __P((__volatile struct simplelock *));
-void s_unlock __P((__volatile struct simplelock *));
+void s_lock __P((struct simplelock *));
+int s_lock_try __P((struct simplelock *));
+void s_unlock __P((struct simplelock *));
/* global data in mp_machdep.c */
extern int mp_ncpus;