diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 2002-06-08 08:08:29 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 2002-06-08 08:08:29 +0000 |
commit | bf79f76a7f4e65d04c31bb9ad6f0cb9e46ccc16e (patch) | |
tree | 17e1c3162bd1d983260fa0803abea0fa6f6c957e /sys | |
parent | dfdaa8f415a765b1588c9810f3b176c6e2e3312a (diff) |
Explain why there is no splhigh here
Diffstat (limited to 'sys')
-rw-r--r-- | sys/arch/i386/i386/autoconf.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/sys/arch/i386/i386/autoconf.c b/sys/arch/i386/i386/autoconf.c index 3ef6c8e06ea..0f4d7b4d28f 100644 --- a/sys/arch/i386/i386/autoconf.c +++ b/sys/arch/i386/i386/autoconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: autoconf.c,v 1.44 2002/04/13 03:08:44 deraadt Exp $ */ +/* $OpenBSD: autoconf.c,v 1.45 2002/06/08 08:08:28 niklas Exp $ */ /* $NetBSD: autoconf.c,v 1.20 1996/05/03 19:41:56 christos Exp $ */ /*- @@ -86,6 +86,10 @@ dev_t bootdev = 0; /* bootdevice, initialized in locore.s */ void cpu_configure() { + /* + * Note, on i386, configure is not running under splhigh unlike other + * architectures. This fact is used by the pcmcia irq line probing. + */ startrtclock(); |