mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
gh-102141: replace use of getpid on Windows with GetCurrentProcessId (GH-102142)
This commit is contained in:
parent
347f7406df
commit
1fa38906f0
4 changed files with 17 additions and 7 deletions
|
@ -7946,7 +7946,7 @@ os_getgid_impl(PyObject *module)
|
|||
#endif /* HAVE_GETGID */
|
||||
|
||||
|
||||
#ifdef HAVE_GETPID
|
||||
#if defined(HAVE_GETPID)
|
||||
/*[clinic input]
|
||||
os.getpid
|
||||
|
||||
|
@ -7957,9 +7957,13 @@ static PyObject *
|
|||
os_getpid_impl(PyObject *module)
|
||||
/*[clinic end generated code: output=9ea6fdac01ed2b3c input=5a9a00f0ab68aa00]*/
|
||||
{
|
||||
#ifdef MS_WINDOWS_NON_DESKTOP
|
||||
return PyLong_FromUnsignedLong(GetCurrentProcessId());
|
||||
#else
|
||||
return PyLong_FromPid(getpid());
|
||||
#endif
|
||||
}
|
||||
#endif /* HAVE_GETPID */
|
||||
#endif /* defined(HAVE_GETPID) */
|
||||
|
||||
#ifdef NGROUPS_MAX
|
||||
#define MAX_GROUPS NGROUPS_MAX
|
||||
|
@ -8265,12 +8269,11 @@ static PyObject*
|
|||
win32_getppid()
|
||||
{
|
||||
HANDLE snapshot;
|
||||
pid_t mypid;
|
||||
PyObject* result = NULL;
|
||||
BOOL have_record;
|
||||
PROCESSENTRY32 pe;
|
||||
|
||||
mypid = getpid(); /* This function never fails */
|
||||
DWORD mypid = GetCurrentProcessId(); /* This function never fails */
|
||||
|
||||
snapshot = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, 0);
|
||||
if (snapshot == INVALID_HANDLE_VALUE)
|
||||
|
@ -8279,9 +8282,9 @@ win32_getppid()
|
|||
pe.dwSize = sizeof(pe);
|
||||
have_record = Process32First(snapshot, &pe);
|
||||
while (have_record) {
|
||||
if (mypid == (pid_t)pe.th32ProcessID) {
|
||||
if (mypid == pe.th32ProcessID) {
|
||||
/* We could cache the ulong value in a static variable. */
|
||||
result = PyLong_FromPid((pid_t)pe.th32ParentProcessID);
|
||||
result = PyLong_FromUnsignedLong(pe.th32ParentProcessID);
|
||||
break;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue