This is the mail archive of the libc-alpha@sources.redhat.com mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[ams@kemisten.nu: nice]


And before I forget (and while I'm on a roll), please commit unless
there exists some problem that I am to blind to see.

------- Start of forwarded message -------
From: "Alfred M. Szmidt" <ams@kemisten.nu>
To: roland@redhat.com, libc-alpha@sources.redhat.com, soeren.d.schulze@gmx.de
Subject: nice
Date: Wed, 18 May 2005 02:15:36 +0200

Roland, do you see any problems with the following patch?  According
to Soeren, it fixes the coreutils test for nice.

2005-05-18  Sören D. Schulze  <soeren.d.schulze@gmx.de>

	* hurd/hurd/resource.h (MACH_PRIORITY_TO_NICE): Don't multiply with 2.
	(NICE_TO_MACH_PRIORITY): Don't divide with 2.

diff -Naur build-tree/glibc-2.3.2/hurd/hurd/resource.h build-tree.orig/glibc-2.3.2/hurd/hurd/resource.h
- --- build-tree/glibc-2.3.2/hurd/hurd/resource.h 2005-04-23 20:29:08.525077368 +0200
+++ build-tree.orig/glibc-2.3.2/hurd/hurd/resource.h    2001-07-07 21:20:57.000000000 +0200
@@ -43,8 +43,8 @@

 /* Convert between Mach priority values and the priority
    values used by getpriority, setpriority, and nice.  */
+#define MACH_PRIORITY_TO_NICE(prio) ((prio) - 12)
+#define NICE_TO_MACH_PRIORITY(nice) (12 + (nice))
- -#define MACH_PRIORITY_TO_NICE(prio) (2 * ((prio) - 12))
- -#define NICE_TO_MACH_PRIORITY(nice) (12 + ((nice) / 2))
------- End of forwarded message -------


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]