diff options
author | 2014-10-13 22:42:22 +0000 | |
---|---|---|
committer | 2014-10-13 22:42:22 +0000 | |
commit | b46dae3dc3dec0f40dd4c52be658d4b0527ad350 (patch) | |
tree | 69675e4151ca51defce263e4aa9df8343dbc75b0 | |
parent | Properly scale string length measurements for PostScript and PDF output; (diff) | |
download | wireguard-openbsd-b46dae3dc3dec0f40dd4c52be658d4b0527ad350.tar.xz wireguard-openbsd-b46dae3dc3dec0f40dd4c52be658d4b0527ad350.zip |
disable pagezero thread on hppa, until failure gets diagnosed, ok miod kettenis
-rw-r--r-- | sys/kern/init_main.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/kern/init_main.c b/sys/kern/init_main.c index 8255def26fb..e9e5827fb4b 100644 --- a/sys/kern/init_main.c +++ b/sys/kern/init_main.c @@ -1,4 +1,4 @@ -/* $OpenBSD: init_main.c,v 1.220 2014/10/11 17:12:30 deraadt Exp $ */ +/* $OpenBSD: init_main.c,v 1.221 2014/10/13 22:42:22 deraadt Exp $ */ /* $NetBSD: init_main.c,v 1.84.4.1 1996/06/02 09:08:06 mrg Exp $ */ /* @@ -526,9 +526,11 @@ main(void *framep) if (kthread_create(uvm_aiodone_daemon, NULL, NULL, "aiodoned")) panic("fork aiodoned"); +#ifndef __hppa__ /* Create the page zeroing kernel thread. */ if (kthread_create(uvm_pagezero_thread, NULL, NULL, "zerothread")) panic("fork zerothread"); +#endif #if defined(MULTIPROCESSOR) /* Boot the secondary processors. */ |