diff options
author | 2004-06-17 00:37:24 +0000 | |
---|---|---|
committer | 2004-06-17 00:37:24 +0000 | |
commit | 52191b5a9e6e5edc760173d18b8580ff8ae0b02f (patch) | |
tree | e26466136595ba919bc5de8190a4f895aaf11402 | |
parent | ldcw does a store too (diff) | |
download | wireguard-openbsd-52191b5a9e6e5edc760173d18b8580ff8ae0b02f.tar.xz wireguard-openbsd-52191b5a9e6e5edc760173d18b8580ff8ae0b02f.zip |
pretty cpu spinup message
-rw-r--r-- | sys/arch/i386/i386/cpu.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/i386/i386/cpu.c b/sys/arch/i386/i386/cpu.c index acd6fcf6659..62955e317dd 100644 --- a/sys/arch/i386/i386/cpu.c +++ b/sys/arch/i386/i386/cpu.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cpu.c,v 1.3 2004/06/16 18:23:05 grange Exp $ */ +/* $OpenBSD: cpu.c,v 1.4 2004/06/17 00:37:24 deraadt Exp $ */ /* $NetBSD: cpu.c,v 1.1.2.7 2000/06/26 02:04:05 sommerfeld Exp $ */ /*- @@ -455,7 +455,7 @@ cpu_hatch(void *v) s = splhigh(); /* XXX prevent softints from running here.. */ lapic_tpr = 0; enable_intr(); - printf("%s: CPU %ld running\n", ci->ci_dev.dv_xname, ci->ci_cpuid); + printf("%s: CPU at apid %ld running\n", ci->ci_dev.dv_xname, ci->ci_cpuid); splx(s); } |