summaryrefslogtreecommitdiff
path: root/psutil/_psutil_bsd.c
diff options
context:
space:
mode:
authorGiampaolo Rodola <g.rodola@gmail.com>2020-10-23 19:57:17 +0200
committerGitHub <noreply@github.com>2020-10-23 19:57:17 +0200
commit89ae354ab7704db69a3f6c880234d21719558511 (patch)
treeb8a87ef018d4f0e7cef48111bfe001390224ba8c /psutil/_psutil_bsd.c
parentba083a0eea87331b67b57c3c83e8cc53faa12b10 (diff)
downloadpsutil-89ae354ab7704db69a3f6c880234d21719558511.tar.gz
[FreeBSD] process resource limits (#1859) (#809)
Diffstat (limited to 'psutil/_psutil_bsd.c')
-rw-r--r--psutil/_psutil_bsd.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/psutil/_psutil_bsd.c b/psutil/_psutil_bsd.c
index c4450d7d..6933260a 100644
--- a/psutil/_psutil_bsd.c
+++ b/psutil/_psutil_bsd.c
@@ -1097,6 +1097,10 @@ static PyMethodDef mod_methods[] = {
"Return process CPU affinity."},
{"proc_cpu_affinity_set", psutil_proc_cpu_affinity_set, METH_VARARGS,
"Set process CPU affinity."},
+ {"proc_getrlimit", psutil_proc_getrlimit, METH_VARARGS,
+ "Get process resource limits."},
+ {"proc_setrlimit", psutil_proc_setrlimit, METH_VARARGS,
+ "Set process resource limits."},
{"cpu_count_phys", psutil_cpu_count_phys, METH_VARARGS,
"Return an XML string to determine the number physical CPUs."},
#endif