Message209712
It's declared in pyconfig.h that HAVE_BROKEN_NICE is set if nice() returns success/failure instead of the new priority.
But configure checks just opposite (as for http://hg.python.org/cpython/file/03fc7449f204/configure.ac#l4234):
if (val1 != -1 && val1 == nice(2))
exit(0);
We need "val1 != nice(2)" instead (to ensure that nicelevel is increased) or "val1 == nice(2)+2" (to check increment is proper; this can be tricky in some cases). |
|
Date |
User |
Action |
Args |
2014-01-30 12:57:41 | George.Kouryachy | set | recipients:
+ George.Kouryachy |
2014-01-30 12:57:41 | George.Kouryachy | set | messageid: <1391086661.44.0.32383692097.issue20445@psf.upfronthosting.co.za> |
2014-01-30 12:57:41 | George.Kouryachy | link | issue20445 messages |
2014-01-30 12:57:40 | George.Kouryachy | create | |
|