From 1ee63e51de0e3b149fc6cb70a02edefde45fdfe1 Mon Sep 17 00:00:00 2001 From: Giampaolo Rodola Date: Sun, 24 Feb 2019 13:30:18 +0100 Subject: release gil around users()/BSD --- psutil/_psutil_bsd.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/psutil/_psutil_bsd.c b/psutil/_psutil_bsd.c index dce157f5..42d51b08 100644 --- a/psutil/_psutil_bsd.c +++ b/psutil/_psutil_bsd.c @@ -802,7 +802,9 @@ psutil_users(PyObject *self, PyObject *args) { struct utmp ut; FILE *fp; + Py_BEGIN_ALLOW_THREADS fp = fopen(_PATH_UTMP, "r"); + Py_END_ALLOW_THREADS if (fp == NULL) { PyErr_SetFromErrno(PyExc_OSError); goto error; -- cgit v1.2.1