Ronald Oussoren <[email protected]> added the comment:
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
}
----------
_______________________________________
Python tracker <[email protected]>
<http://bugs.python.org/issue8410>
_______________________________________
_______________________________________________
Python-bugs-list mailing list
Unsubscribe:
http://mail.python.org/mailman/options/python-bugs-list/archive%40mail-archive.com