diff options
author | Christian Heimes <christian@cheimes.de> | 2013-10-22 09:21:54 (GMT) |
---|---|---|
committer | Christian Heimes <christian@cheimes.de> | 2013-10-22 09:21:54 (GMT) |
commit | b7bd5df809aabaf857eb51b139d5e519d8b3c364 (patch) | |
tree | d4fb23b4eca52906c84473365a6a0e44c792a7e4 /pyconfig.h.in | |
parent | 6fc79bf813de21015208d989e38cdc95bda03292 (diff) | |
download | cpython-b7bd5df809aabaf857eb51b139d5e519d8b3c364.zip cpython-b7bd5df809aabaf857eb51b139d5e519d8b3c364.tar.gz cpython-b7bd5df809aabaf857eb51b139d5e519d8b3c364.tar.bz2 |
Issue #16595: Add prlimit() to resource module
prlimit() is a Linux specific command that combines setrlimit, getrlimit and can set the limit
of other processes.
Diffstat (limited to 'pyconfig.h.in')
-rw-r--r-- | pyconfig.h.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pyconfig.h.in b/pyconfig.h.in index 65205e4..13979fc 100644 --- a/pyconfig.h.in +++ b/pyconfig.h.in @@ -627,6 +627,9 @@ /* Define to 1 if you have the `pread' function. */ #undef HAVE_PREAD +/* Define if you have the 'prlimit' functions. */ +#undef HAVE_PRLIMIT + /* Define to 1 if you have the <process.h> header file. */ #undef HAVE_PROCESS_H |