Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | replace PY_LONG_LONG with long long | Benjamin Peterson | 2016-09-06 | 1 | -3/+3 |
| | |||||
* | Issue #27895: Spelling fixes (Contributed by Ville Skyttä). | Raymond Hettinger | 2016-08-30 | 1 | -1/+1 |
| | |||||
* | Removed unintentional trailing spaces in non-external and non-generated C files. | Serhiy Storchaka | 2015-03-18 | 1 | -3/+3 |
| | |||||
* | The PyCOND_TIMEDWAIT must use microseconds for the timeout argument | Kristján Valur Jónsson | 2014-05-08 | 1 | -6/+6 |
| | | | | | | | | in order to have the same resolution as pthreads condition variables. At the same time, it must be large enough to accept 31 bits of milliseconds, which is the maximum timeout value in the windows API. A PY_LONG_LONG of microseconds fullfills both requirements. This closes issue #20737 | ||||
* | Issue #15038 : Fixing the condition broadcast and docs. | Kristján Valur Jónsson | 2013-03-20 | 1 | -6/+6 |
| | |||||
* | Replace WaitForSingleObject with WaitForSingleObjectEx, | Martin v. Löwis | 2013-01-25 | 1 | -1/+1 |
| | | | | for better WinRT compatibility. | ||||
* | Issue #15038: Document caveats with the emulated condition variables. | Kristjan Valur Jonsson | 2012-06-19 | 1 | -0/+29 |
| | |||||
* | Issue #15038: | Kristjan Valur Jonsson | 2012-06-19 | 1 | -5/+13 |
| | | | | | | Fix incorrect test of the condition variable state, spotted by Richard Oudkerk. This could cause the internal condition variable to grow without bounds. | ||||
* | Issue #15038: Optimize python Locks on Windows | Kristján Valur Jónsson | 2012-06-18 | 1 | -0/+353 |
Extract cross-platform condition variable support into a separate file and provide user-mode non-recursive locks for Windows. |