]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Typo
authorJesus Cea <jcea@jcea.es>
Fri, 9 Sep 2011 23:53:19 +0000 (01:53 +0200)
committerJesus Cea <jcea@jcea.es>
Fri, 9 Sep 2011 23:53:19 +0000 (01:53 +0200)
Modules/posixmodule.c

index df597b887b3f6ed48758002cf9236d80801b9d1c..153ddcd7a3f268c83abf85fb1542cab0e70b5668 100644 (file)
@@ -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();