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 ronaldoussoren
Recipients kristjan.jonsson, loewis, pitrou, ronaldoussoren
Date 2010-04-18.21:04:45
SpamBayes Score 0.010256653
Marked as misclassified No
Message-id <1271624687.12.0.900431448361.issue8410@psf.upfronthosting.co.za>
In-reply-to
Content
W.r.t. "This appears to be the case on Mac OS X": OSX 10.4 and later seem to support posix semaphores, the program below prints "yes":

#include <unistd.h>

int main()
{
#ifdef _POSIX_SEMAPHORES
        printf("yes\n");
#else
        printf("no\n");
#endif
}
History
Date User Action Args
2010-04-18 21:04:47ronaldoussorensetrecipients: + ronaldoussoren, loewis, pitrou, kristjan.jonsson
2010-04-18 21:04:47ronaldoussorensetmessageid: <1271624687.12.0.900431448361.issue8410@psf.upfronthosting.co.za>
2010-04-18 21:04:46ronaldoussorenlinkissue8410 messages
2010-04-18 21:04:45ronaldoussorencreate