diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2009-05-23 16:14:27 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2009-05-23 16:14:27 (GMT) |
commit | 971e51be7e2ab1743ed73723596e2d9c15318491 (patch) | |
tree | 32976f701973f12dbd6db169cc38f6dbb80e50ad | |
parent | c3ee166427b5b9bdcc6f466ab4794ae754217d72 (diff) | |
download | cpython-971e51be7e2ab1743ed73723596e2d9c15318491.zip cpython-971e51be7e2ab1743ed73723596e2d9c15318491.tar.gz cpython-971e51be7e2ab1743ed73723596e2d9c15318491.tar.bz2 |
Merged revisions 72855 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/trunk
........
r72855 | antoine.pitrou | 2009-05-23 18:06:49 +0200 (sam., 23 mai 2009) | 3 lines
Some pid_t-expecting or producing functions were forgotten in r72852.
........
-rw-r--r-- | Modules/posixmodule.c | 28 |
1 files changed, 17 insertions, 11 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c index d1951f9..cf19a07 100644 --- a/Modules/posixmodule.c +++ b/Modules/posixmodule.c @@ -4018,7 +4018,7 @@ Return the current process id"); static PyObject * posix_getpid(PyObject *self, PyObject *noargs) { - return PyLong_FromLong((long)getpid()); + return PyLong_FromPid(getpid()); } @@ -4072,13 +4072,13 @@ Call the system call getpgid()."); static PyObject * posix_getpgid(PyObject *self, PyObject *args) { - int pid, pgid; - if (!PyArg_ParseTuple(args, "i:getpgid", &pid)) + pid_t pid, pgid; + if (!PyArg_ParseTuple(args, PARSE_PID ":getpgid", &pid)) return NULL; pgid = getpgid(pid); if (pgid < 0) return posix_error(); - return PyLong_FromLong((long)pgid); + return PyLong_FromPid(pgid); } #endif /* HAVE_GETPGID */ @@ -4092,9 +4092,9 @@ static PyObject * posix_getpgrp(PyObject *self, PyObject *noargs) { #ifdef GETPGRP_HAVE_ARG - return PyLong_FromLong((long)getpgrp(0)); + return PyLong_FromPid(getpgrp(0)); #else /* GETPGRP_HAVE_ARG */ - return PyLong_FromLong((long)getpgrp()); + return PyLong_FromPid(getpgrp()); #endif /* GETPGRP_HAVE_ARG */ } #endif /* HAVE_GETPGRP */ @@ -4128,7 +4128,7 @@ Return the parent's process id."); static PyObject * posix_getppid(PyObject *self, PyObject *noargs) { - return PyLong_FromLong((long)getppid()); + return PyLong_FromPid(getppid()); } #endif @@ -4217,8 +4217,13 @@ Kill a process group with a signal."); static PyObject * posix_killpg(PyObject *self, PyObject *args) { - int pgid, sig; - if (!PyArg_ParseTuple(args, "ii:killpg", &pgid, &sig)) + int sig; + pid_t pgid; + /* XXX some man pages make the `pgid` parameter an int, others + a pid_t. Since getpgrp() returns a pid_t, we assume killpg should + take the same type. Moreover, pid_t is always at least as wide as + int (else compilation of this module fails), which is safe. */ + if (!PyArg_ParseTuple(args, PARSE_PID "i:killpg", &pgid, &sig)) return NULL; if (killpg(pgid, sig) == -1) return posix_error(); @@ -4898,8 +4903,9 @@ Set the process group associated with the terminal given by a fd."); static PyObject * posix_tcsetpgrp(PyObject *self, PyObject *args) { - int fd, pgid; - if (!PyArg_ParseTuple(args, "ii:tcsetpgrp", &fd, &pgid)) + int fd; + pid_t pgid; + if (!PyArg_ParseTuple(args, "i" PARSE_PID ":tcsetpgrp", &fd, &pgid)) return NULL; if (tcsetpgrp(fd, pgid) < 0) return posix_error(); |