summaryrefslogtreecommitdiffstats
path: root/Modules/_multiprocessing/multiprocessing.c
Commit message (Collapse)AuthorAgeFilesLines
* Issue #4028: Make multiprocessing build on SunOS.Charles-François Natali2011-12-141-1/+1
|
* Close #13022: _multiprocessing.recvfd() doesn't check that file descriptor ↵Jesus Cea2011-09-211-0/+11
| | | | was actually received
* Close #12950: multiprocessing "test_fd_transfer" fails under OpenIndianaJesus Cea2011-09-101-11/+23
|
* Issue #11657: Fix sending file descriptors over 255 over a multiprocessing Pipe.Antoine Pitrou2011-08-231-2/+2
| | | | Also added some tests.
* Merged revisions 85665 via svnmerge fromBenjamin Peterson2010-10-171-2/+2
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r85665 | benjamin.peterson | 2010-10-17 16:12:18 -0500 (Sun, 17 Oct 2010) | 1 line fix strict aliasing warnings ........
* Fix compiler warning: module init functions do not return anything in 2.x.Georg Brandl2010-10-171-1/+1
|
* Merged revisions 85586-85587,85596-85598 via svnmerge fromGregory P. Smith2010-10-171-2/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r85586 | gregory.p.smith | 2010-10-16 17:17:24 -0700 (Sat, 16 Oct 2010) | 2 lines fix for netbsd. ........ r85587 | gregory.p.smith | 2010-10-16 17:43:10 -0700 (Sat, 16 Oct 2010) | 3 lines applying netbsd-wizs-mod.patch from issue5510 - fixes for netbsd (and dragonflybsd?) ........ r85596 | gregory.p.smith | 2010-10-16 19:14:36 -0700 (Sat, 16 Oct 2010) | 6 lines Fix multiprocessing Semaphore's on netbsd5. SEM_VALUE_MAX is defined as (~0U) on NetBSD which was causing it to appear as -1 when used as a signed int for _multprocessing.SemLock.SEM_VALUE_MAX. This works around the problem by substituting INT_MAX on systems where it appears negative when used as an int. ........ r85597 | gregory.p.smith | 2010-10-16 19:57:19 -0700 (Sat, 16 Oct 2010) | 2 lines skip test_itimer_virtual on NetBSD to prevent the test suite from hanging. ........ r85598 | gregory.p.smith | 2010-10-16 20:09:12 -0700 (Sat, 16 Oct 2010) | 2 lines Avoid hanging the test on netbsd5. ........
* Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-091-198/+198
|
* Issue #7272, continued: don't re-use existing HAVE_BROKEN_POSIX_SEMAPHORESMark Dickinson2009-11-281-2/+2
| | | | | to indicate that semaphores aren't available; define a new variable POSIX_SEMAPHORES_NOT_ENABLED instead.
* Issue #7272: Add configure test to detect whether sem_open worksMark Dickinson2009-11-201-2/+3
| | | | | | properly, and use this to skip test_multiprocessing on platforms where sem_open raises a signal. This should fix some FreeBSD buildbot failures for test_multiprocessing.
* issue5545: Switch to Autoconf for multiprocessing; special thanks to Martin ↵Jesse Noller2009-04-021-1/+7
| | | | Lowis for help
* convert multiprocessing to unix line endingsBenjamin Peterson2008-06-131-311/+311
|
* Typo.Georg Brandl2008-06-131-1/+1
|
* #3095: don't leak values from Py_BuildValue.Georg Brandl2008-06-131-6/+9
|
* add the multiprocessing package to fulfill PEP 371Benjamin Peterson2008-06-111-0/+308