summaryrefslogtreecommitdiffstats
path: root/Modules/_multiprocessing
Commit message (Collapse)AuthorAgeFilesLines
* Issue #28139: Fix messed up indentationMartin Panter2016-09-171-4/+4
| | | | | Also update the classmethod and staticmethod doc strings and comments to match the RST documentation.
* Issue #24303: Fix random EEXIST upon multiprocessing semaphores creation withCharles-François Natali2016-02-121-4/+12
| | | | Linux PID namespaces enabled.
* Issue #17097: Make multiprocessing ignore EINTR.Richard Oudkerk2013-07-011-9/+48
|
* - Fix typos in the multiprocessing module.doko@ubuntu.com2013-05-151-1/+1
|
* Issue #10527: Use poll() instead of select() for multiprocessing pipesRichard Oudkerk2013-01-141-0/+33
|
* Issue #9586: Redefine SEM_FAILED on MacOSX to keep compiler happy.Richard Oudkerk2013-01-011-0/+7
|
* Issue #10133: Make multiprocessing deallocate buffer if socket read fails.Richard Oudkerk2012-06-111-13/+16
| | | | Patch by Hallvard B Furuseth.
* Fix for issue 14725 for 2.7 branchRichard Oudkerk2012-05-051-0/+1
|
* 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 85679 via svnmerge fromGeorg Brandl2010-11-231-1/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r85679 | georg.brandl | 2010-10-18 07:06:18 +0200 (Mo, 18 Okt 2010) | 1 line Fix compiler warnings about formatting pid_t as an int, by always casting to long. ........
* 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. ........
* Issue #8864: Define _XOPEN_SOURCE on Solaris for theMartin v. Löwis2010-06-041-0/+6
| | | | multiprocessing module.
* Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-097-1425/+1425
|
* Remove extraneous whitespace.Brett Cannon2010-05-053-51/+51
|
* Issue #7272, continued: don't re-use existing HAVE_BROKEN_POSIX_SEMAPHORESMark Dickinson2009-11-282-3/+3
| | | | | 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-202-3/+4
| | | | | | 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.
* multiprocessing doesn't compile in Solaris because a typoJesus Cea2009-07-021-1/+1
|
* Issue 3551: Raise ValueError if the size causes ERROR_NO_SYSTEM_RESOURCESJesse Noller2009-04-022-2/+12
|
* Issue 3110: Additional protection for SEM_VALUE_MAX on platforms, thanks to ↵Jesse Noller2009-04-021-5/+10
| | | | Martin Loewis
* issue5545: Switch to Autoconf for multiprocessing; special thanks to Martin ↵Jesse Noller2009-04-023-7/+13
| | | | Lowis for help
* Fixed compile error on windows.Hirokazu Yamamoto2009-04-011-0/+3
|
* Issue 5619: Pass MS CRT debug flags into subprocessesJesse Noller2009-03-311-0/+6
|
* merge in patch from tim golden to fix contextmanager support for mp.Lock()Jesse Noller2009-03-301-1/+1
|
* issue 5002: fix windows warning that I intro'ed with r68768Jesse Noller2009-01-201-3/+1
|
* Resolve issue 3321: (segfault) _multiprocessing.Connection() doesn't check ↵Jesse Noller2009-01-192-2/+14
| | | | handle
* Move definition int sval into branch of ifdef where it is used.Jeremy Hylton2008-11-281-1/+1
| | | | Otherwise, you get a warning about an undefined variable.
* Issue #4204: Fixed module build errors on FreeBSD 4.Martin v. Löwis2008-11-041-0/+2
|
* #3743: PY_FORMAT_SIZE_T is designed for the OS "printf" functions, not forAmaury Forgeot d'Arc2008-09-102-4/+3
| | | | | | | | | PyString_FromFormat which has an independent implementation, and uses "%zd". This makes a difference on win64, where printf needs "%Id" to display 64bit values. For example, queue.__repr__ was incorrect. Reviewed by Martin von Loewis.
* Fix issue 3110 - solaris compilation of multiprocessing fails, reviewed by ↵Jesse Noller2008-09-031-0/+11
| | | | pitrou
* Issue #3139: Make buffer-interface thread-safe wrt. PyArg_ParseTuple,Martin v. Löwis2008-08-121-6/+16
| | | | | | | by denying s# to parse objects that have a releasebuffer procedure, and introducing s*. More module might need to get converted to use s*.
* fix compile error on WindowsBenjamin Peterson2008-08-021-1/+1
|
* Submit fix for issue3393: Memory corruption in multiprocessing moduleJesse Noller2008-08-013-19/+28
|
* convert multiprocessing to unix line endingsBenjamin Peterson2008-06-134-870/+870
|
* 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-117-0/+2187