summaryrefslogtreecommitdiffstats
path: root/Modules/posixmodule.c
diff options
context:
space:
mode:
authorJesus Cea <jcea@jcea.es>2011-09-09 23:53:19 (GMT)
committerJesus Cea <jcea@jcea.es>2011-09-09 23:53:19 (GMT)
commit54b01498e37a1d9bbad02a3e8c3c8106f68e6820 (patch)
treeb523c503da93918d67f1ac9fe1036da57a3fa31c /Modules/posixmodule.c
parent9c8222727789900a3a76374e957ff2d90f1216c4 (diff)
downloadcpython-54b01498e37a1d9bbad02a3e8c3c8106f68e6820.zip
cpython-54b01498e37a1d9bbad02a3e8c3c8106f68e6820.tar.gz
cpython-54b01498e37a1d9bbad02a3e8c3c8106f68e6820.tar.bz2
Typo
Diffstat (limited to 'Modules/posixmodule.c')
-rw-r--r--Modules/posixmodule.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/Modules/posixmodule.c b/Modules/posixmodule.c
index df597b8..153ddcd 100644
--- a/Modules/posixmodule.c
+++ b/Modules/posixmodule.c
@@ -4743,9 +4743,9 @@ posix_sched_setscheduler(PyObject *self, PyObject *args)
return NULL;
/*
- ** sched_setscheduler() returns 0 in Linux, but
- ** the previous scheduling policy.
- ** On error, -1 is returned in all Operative Systems.
+ ** sched_setscheduler() returns 0 in Linux, but the previous
+ ** scheduling policy under Solaris/Illumos, and others.
+ ** On error, -1 is returned in all Operating Systems.
*/
if (sched_setscheduler(pid, policy, &param) == -1)
return posix_error();