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.

Author vstinner
Recipients asksol, db3l, jnoller, vstinner
Date 2011-01-02.12:30:33
SpamBayes Score 0.015753275
Marked as misclassified No
Message-id <1293971449.66.0.763989709026.issue10348@psf.upfronthosting.co.za>
In-reply-to
Content
OpenBSD.

According to Martin, OpenBSD doesn't implement POSIX semaphores.
---
I don't have an installation of OpenBSD, but...

In FreeBSD, POSIX semaphores are implemented in sys/kern/uipc_sem.c.
In

http://www.openbsd.org/cgi-bin/cvsweb/src/sys/kern/

that file doesn't exist. Also, in FreeBSD's limits.h,
_POSIX_SEM_NSEMS_MAX is defined (surprisingly to 256);
in

http://www.openbsd.org/cgi-bin/cvsweb/~checkout~/src/include/limits.h?rev=1.15;content-type=text/plain

this constant doesn't appear. So ISTM that OpenBSD doesn't implement
POSIX semaphores. IIUC, this means that the multiprocessing module
won't be fully functional, and its tests (and the concurrent.futures
tests) will be skipped.
---
History
Date User Action Args
2011-01-02 12:30:49vstinnersetrecipients: + vstinner, db3l, jnoller, asksol
2011-01-02 12:30:49vstinnersetmessageid: <1293971449.66.0.763989709026.issue10348@psf.upfronthosting.co.za>
2011-01-02 12:30:34vstinnerlinkissue10348 messages
2011-01-02 12:30:33vstinnercreate