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: patches for multiprocessing module on NetBSD
Type: compile error Stage: test needed
Components: Build Versions: Python 3.0
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: jnoller Nosy List: aniou, jnoller
Priority: normal Keywords: patch

Created on 2009-03-01 22:07 by aniou, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
py-netbsd-multiprocessing.diff aniou, 2009-03-01 22:07
Messages (2)
msg82991 - (view) Author: Piotr Meyer (aniou) Date: 2009-03-01 22:07
Multiprocessing module needs some patches to succesfully builing
and running on NetBSD. I made this patch and test on NetBSD 5rc2
(upcoming release).

1. we need working socket module (Modules/socketmodule.c)

2. mremap under NetBSD has different semantics:
   (Modules/mmapmodule.c)

3. finally, we need settings for netbsd in setup.py:
   (setup.py)  

After patching and building:

netbsd5#  ./python -bb -E Lib/test/regrtest.py test_multiprocessing
test_multiprocessing
1 test OK.
msg84849 - (view) Author: Jesse Noller (jnoller) * (Python committer) Date: 2009-03-31 18:13
Applied in r70849 python-trunk, merging to py3k and 26maint
History
Date User Action Args
2022-04-11 14:56:46adminsetgithub: 49650
2009-03-31 18:13:42jnollersetstatus: open -> closed
resolution: fixed
messages: + msg84849
2009-03-29 15:45:10jnollersetpriority: normal
2009-03-06 21:44:12ajaksu2setassignee: jnoller
stage: test needed
2009-03-02 02:01:53pitrousetnosy: + jnoller
2009-03-01 22:07:18anioucreate