summaryrefslogtreecommitdiff
path: root/Modules/_multiprocessing
Commit message (Expand)AuthorAgeFilesLines
* [3.7] bpo-36254: Fix invalid uses of %d in format strings in C. (GH-12264). (...Serhiy Storchaka2019-03-141-1/+1
* bpo-35436: Add missing PyErr_NoMemory() calls and other minor bug fixes. (GH-...Zackery Spytz2018-12-071-3/+6
* bpo-31653: Remove deadcode in semlock_acquire() (#4091)Victor Stinner2017-10-231-4/+4
* bpo-31653: Don't release the GIL if we can acquire a multiprocessing semaphor...Antoine Pitrou2017-10-221-10/+20
* bpo-30022: Get rid of using EnvironmentError and IOError (except test… (#1051)Serhiy Storchaka2017-04-162-4/+4
* bpo-6532: Make the thread id an unsigned integer. (#781)Serhiy Storchaka2017-03-231-1/+1
* Issue #28152: Fix -Wunreachable-code warning on clangVictor Stinner2016-12-051-2/+5
* require a long long data type (closes #27961)Benjamin Peterson2016-09-051-1/+1
* Issue #27591: Merge from 3.5Berker Peksag2016-07-231-0/+3
|\
| * Issue #27591: Set sigint_event to NULL if _PyOS_IsMainThread() returns falseBerker Peksag2016-07-231-0/+3
* | Issue #26924: Fix Windows buildbotsBerker Peksag2016-05-071-1/+1
* | Issue #26924: Do not define _multiprocessing.sem_unlink under AndroidBerker Peksag2016-05-071-1/+1
|/
* Issue #21704: Fix build error for _multiprocessing when semaphoresRichard Oudkerk2014-07-281-0/+2
* Fix conversion from Py_ssize_t to int.Richard Oudkerk2013-09-071-2/+4
* Issue #8713: Support alternative start methods in multiprocessing on Unix.Richard Oudkerk2013-08-143-14/+66
* Reuse Py_MIN and Py_MAX macros: remove duplicate MIN/MAX macrosVictor Stinner2013-06-041-9/+0
* - Fix typos in the multiprocessing module.doko@ubuntu.com2013-05-151-1/+1
|\
| * - Fix typos in the multiprocessing module.doko@ubuntu.com2013-05-151-1/+1
* | Replace WaitForMultipleObjects with WaitForMultipleObjectEx,Martin v. Löwis2013-01-251-1/+1
* | Replace WaitForSingleObject with WaitForSingleObjectEx,Martin v. Löwis2013-01-251-2/+2
* | Issue #9586: Merge.Richard Oudkerk2013-01-011-0/+7
|\ \ | |/
| * Issue #9586: MergeRichard Oudkerk2013-01-011-0/+7
| |\
| | * 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
| | * Fix for issue 14725 for 3.2 branchRichard Oudkerk2012-05-051-0/+1
* | | Issue #16719: Get rid of WindowsError. Use OSError insteadAndrew Svetlov2012-12-191-2/+2
* | | Get rid of circular import and eliminate unprefixed exported symbolsRichard Oudkerk2012-10-073-26/+15
|/ /
* | Make multiprocessing's shared memory use memoryview instead of raw pointerRichard Oudkerk2012-05-261-17/+0
* | Mark multiprocessing files with "Licensed to PSF under a Contributor Agreement"Richard Oudkerk2012-04-302-2/+4
* | Issue #11750: The Windows API functions scattered in the _subprocess andAntoine Pitrou2012-04-182-834/+72
* | Issue #12328: Fix multiprocessing's use of overlapped I/O on Windows.Antoine Pitrou2012-03-051-27/+42
* | Issue #14125: Fix multiprocessing refleak on Windows. Patch by sbt.Stefan Krah2012-02-271-1/+4
* | Issue #8184: multiprocessing: On Windows, don't set SO_REUSEADDR on ConnectionCharles-François Natali2012-02-081-0/+1
* | Fix compilation warning on WindowsAmaury Forgeot d'Arc2011-12-171-1/+1
* | Issue #10350: Read and save errno before calling a function which might overw...Antoine Pitrou2011-12-161-1/+3
|\ \ | |/
| * Issue #10350: Read and save errno before calling a function which might overw...Antoine Pitrou2011-12-161-1/+3
| * Issue #4028: Make multiprocessing build on SunOS.Charles-François Natali2011-12-141-1/+1
* | Issue #12328: Under Windows, refactor handling of Ctrl-C events andAntoine Pitrou2011-11-214-70/+36
* | Issue #12981: rewrite multiprocessing_{sendfd,recvfd} in Python.Charles-François Natali2011-09-242-137/+1
* | Close #13022: _multiprocessing.recvfd() doesn't check that file descriptor wa...Jesus Cea2011-09-211-0/+11
|\ \ | |/
| * Close #13022: _multiprocessing.recvfd() doesn't check that file descriptor wa...Jesus Cea2011-09-211-0/+11
| * Close #12950: multiprocessing "test_fd_transfer" fails under OpenIndianaJesus Cea2011-09-101-11/+23
* | 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
|\ \ | |/
| * Issue #11657: Fix sending file descriptors over 255 over a multiprocessing Pipe.Antoine Pitrou2011-08-231-2/+2
* | Issue #9205: concurrent.futures.ProcessPoolExecutor now detects killedAntoine Pitrou2011-06-081-16/+374
* | Remove dead code from _multiprocessingAntoine Pitrou2011-05-093-58/+3
* | Issue #11743: Rewrite multiprocessing connection classes in pure Python.Antoine Pitrou2011-05-096-923/+168
* | Issue #8914: fix various warnings from the Clang static analyzer v254.Brett Cannon2011-02-221-1/+1
|/
* Fix compiler warnings about formatting pid_t as an int, by always casting to ...Georg Brandl2010-10-181-1/+1