diff options
author | Thomas Wouters <thomas@python.org> | 2001-07-11 14:45:34 (GMT) |
---|---|---|
committer | Thomas Wouters <thomas@python.org> | 2001-07-11 14:45:34 (GMT) |
commit | c2c12dc31cfbe1babe3e8f7f6a4f5bc709e684da (patch) | |
tree | 66c88574c4ef234b2ec4491ccca367e8f6979890 /configure.in | |
parent | 109d986bfc10e5971e4669906f9e8eea00d5f912 (diff) | |
download | cpython-c2c12dc31cfbe1babe3e8f7f6a4f5bc709e684da.zip cpython-c2c12dc31cfbe1babe3e8f7f6a4f5bc709e684da.tar.gz cpython-c2c12dc31cfbe1babe3e8f7f6a4f5bc709e684da.tar.bz2 |
Patch #439995 (slightly modified from the uploaded version):
Work around Linux's nonstandard nice() systemcall, which does not return the
new priority.
This closes SF bug #439990.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.in b/configure.in index c7bfe6a..6359a46 100644 --- a/configure.in +++ b/configure.in @@ -1175,7 +1175,7 @@ AC_CHECK_FUNCS(alarm chown clock confstr ctermid ctermid_r execv \ setlocale setregid setreuid setsid setpgid setuid setvbuf \ sigaction siginterrupt sigrelse strftime strptime symlink sysconf \ tcgetpgrp tcsetpgrp tempnam timegm times tmpfile tmpnam tmpnam_r \ - truncate uname waitpid _getpty) + truncate uname waitpid _getpty getpriority) # check for openpty and forkpty |