diff options
| author | Jake Burkholder <jake@FreeBSD.org> | 2000-12-04 09:52:39 +0000 |
|---|---|---|
| committer | Jake Burkholder <jake@FreeBSD.org> | 2000-12-04 09:52:39 +0000 |
| commit | f6a6e37a2c8bf9f8b93182d9ef30b72164ddf631 (patch) | |
| tree | 85816851f0ecf696d6a1b5bd864829c392c29e9d | |
| parent | 85b039fe64d39820d78a3453e7dc1be48bff5f35 (diff) | |
Notes
| -rw-r--r-- | sys/kern/kern_intr.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/kern/kern_intr.c b/sys/kern/kern_intr.c index 30192b5a6813..dcd422a27843 100644 --- a/sys/kern/kern_intr.c +++ b/sys/kern/kern_intr.c @@ -257,8 +257,8 @@ start_softintr(dummy) void *dummy; { net_ih = sinthand_add("net", NULL, swi_net, NULL, SWI_NET, 0); - softclock_ih = - sinthand_add("clock", &clk_ithd, softclock, NULL, SWI_CLOCK, INTR_MPSAFE); + softclock_ih = sinthand_add("clock", &clk_ithd, softclock, NULL, + SWI_CLOCK, INTR_MPSAFE); vm_ih = sinthand_add("vm", NULL, swi_vm, NULL, SWI_VM, 0); } |
