--- /usr/src/sys/kern/kern_resource.c Tue Sep 19 11:00:29 2000 +++ /usr/src/sys/kern/kern_resource.c Tue Dec 19 14:44:14 2000 @@ -283,11 +283,13 @@ * system deadlock if an idleprio process gains a lock on a resource * that other processes need (and the idleprio process can't run * due to a CPU-bound normal process). Fix me! XXX + * Forget it. Just allow it. Zlo. */ -#if 0 +#if 1 if (RTP_PRIO_IS_REALTIME(rtp.type)) -#endif +#else if (rtp.type != RTP_PRIO_NORMAL) +#endif return (EPERM); } switch (rtp.type) {