From owner-freebsd-hackers Mon Oct 28 04:38:16 1996 Return-Path: owner-hackers Received: (from root@localhost) by freefall.freebsd.org (8.7.5/8.7.3) id EAA23552 for hackers-outgoing; Mon, 28 Oct 1996 04:38:16 -0800 (PST) Received: from zwei.siemens.at (zwei.siemens.at [193.81.246.12]) by freefall.freebsd.org (8.7.5/8.7.3) with ESMTP id EAA23532 for ; Mon, 28 Oct 1996 04:38:06 -0800 (PST) Received: from sol1.gud.siemens.co.at (root@[10.1.143.100]) by zwei.siemens.at (8.7.5/8.7.3) with SMTP id NAA01689 for ; Mon, 28 Oct 1996 13:36:26 +0100 (MET) Received: from ws2301.gud.siemens.co.at by sol1.gud.siemens.co.at with smtp (Smail3.1.28.1 #7 for ) id m0vHqwV-00021FC; Mon, 28 Oct 96 13:37 MET Received: by ws2301.gud.siemens.co.at (1.37.109.16/1.37) id AA292366197; Mon, 28 Oct 1996 13:36:37 +0100 From: "Hr.Ladavac" Message-Id: <199610281236.AA292366197@ws2301.gud.siemens.co.at> Subject: Re: Priorities? To: wosch@cs.tu-berlin.de (Wolfram Schneider) Date: Mon, 28 Oct 1996 13:36:37 +0100 (MEZ) Cc: joerg_wunsch@uriah.heep.sax.de, freebsd-hackers@freebsd.org, csubl@csv.warwick.ac.uk In-Reply-To: <199610281032.LAA02943@campa.panke.de> from "Wolfram Schneider" at Oct 28, 96 11:32:00 am X-Mailer: ELM [version 2.4 PL24 ME8a] Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Sender: owner-hackers@freebsd.org X-Loop: FreeBSD.org Precedence: bulk E-mail message from Wolfram Schneider contained: > J. Wunsch writes: > >`idleprio' processes are being scheduled only if absolutely no other > >processes are runnable, and the system would otherwise enter the idle > >loop. Thus, they are good e.g. for X11 screen savers. > > I remembered my department defined a 'xlock' icon in .fvwmrc > for new users. They used 'nice -20 xlock'. It was a disaster > on X terminals, nobody can login because the server for the X > terminals are never idle. No wonder. nice -20 is the *highest* priority (aside from rtprio processes). What they wanted was nice +20 xlock (the lower the nice value, the higher the priority of the process; it makes sense: the nicer the process, the lesser it influences the other processes). /Marino > > Wolfram >