This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Build failure in posixmodule.c with SCHED_SPORADIC available
Type: Stage: resolved
Components: Extension Modules Versions: Python 3.3
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: benjamin.peterson, isoschiz, pconnell, python-dev
Priority: normal Keywords: patch

Created on 2014-01-10 14:54 by pconnell, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
sched_sporadic_build.diff pconnell, 2014-01-10 14:54 Build fix review
Messages (4)
msg207865 - (view) Author: Phil Connell (pconnell) * Date: 2014-01-10 14:54
Typo in revision 71704 that causes build failures on systems with SCHED_SPORADIC available. See attached patch.

(Can reproduce by #defining SCHED_SPORADIC just above where it's used in posixmodule.c)
msg207866 - (view) Author: Phil Connell (pconnell) * Date: 2014-01-10 14:55
Where I actually mean changeset 71704:89e92e684b37
msg207867 - (view) Author: Benjamin Peterson (benjamin.peterson) * (Python committer) Date: 2014-01-10 15:20
Congratulations on having a system with SCHED_SPORADIC defined. :)
msg207868 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2014-01-10 15:25
New changeset 4f74ea7eba03 by Benjamin Peterson in branch '3.3':
fix build when SCHED_SPORADIC is defined (closes #20217)
http://hg.python.org/cpython/rev/4f74ea7eba03
History
Date User Action Args
2022-04-11 14:57:56adminsetgithub: 64416
2014-01-10 15:25:13python-devsetstatus: open -> closed

nosy: + python-dev
messages: + msg207868

resolution: fixed
stage: resolved
2014-01-10 15:25:07benjamin.petersonsetversions: - Python 3.4
2014-01-10 15:20:34benjamin.petersonsetmessages: + msg207867
2014-01-10 14:55:55pconnellsetmessages: + msg207866
2014-01-10 14:54:54pconnellcreate