summaryrefslogtreecommitdiff
path: root/src/backend/port/win32_latch.c
Commit message (Expand)AuthorAgeFilesLines
* Combine win32 and unix latch implementations.Andres Freund2016-03-211-349/+0
* Only clear latch self-pipe/event if there is a pending notification.Andres Freund2016-03-181-9/+10
* Error out if waiting on socket readiness without a specified socket.Andres Freund2016-03-181-4/+5
* Update copyright for 2016Bruce Momjian2016-01-021-1/+1
* Make WaitLatchOrSocket's timeout detection more robust.Tom Lane2015-07-181-3/+6
* pgindent run for 9.5Bruce Momjian2015-05-231-1/+1
* Add barriers to the latch code.Andres Freund2015-01-131-0/+16
* Allow latches to wait for socket writability without waiting for readability.Andres Freund2015-01-131-5/+10
* Update copyright for 2015Bruce Momjian2015-01-061-1/+1
* pgindent run for 9.4Bruce Momjian2014-05-061-1/+1
* Update copyright for 2014Bruce Momjian2014-01-071-1/+1
* Update copyrights for 2013Bruce Momjian2013-01-011-1/+1
* Assert that WaitLatch's timeout is not more than INT_MAX milliseconds.Tom Lane2012-11-181-1/+2
* Fix WaitLatch() to return promptly when the requested timeout expires.Tom Lane2012-11-081-6/+31
* Split up process latch initialization for more-fail-soft behavior.Tom Lane2012-10-141-0/+6
* Make walsender more responsive.Robert Haas2012-07-021-0/+4
* Run pgindent on 9.2 source tree in preparation for first 9.3Bruce Momjian2012-06-101-2/+3
* Assert that WaitLatchOrSocket callers cannot wait only for writability.Tom Lane2012-05-141-0/+2
* Attempt to fix some issues in our Windows socket code.Tom Lane2012-05-131-7/+8
* Make WaitLatch's WL_POSTMASTER_DEATH result trustworthy; simplify callers.Tom Lane2012-05-101-2/+10
* Improve Windows implementation of WaitLatch/WaitLatchOrSocket.Tom Lane2012-05-101-21/+39
* Update copyright notices for year 2012.Bruce Momjian2012-01-011-1/+1
* Use consistent format for reporting GetLastError()Peter Eisentraut2011-08-231-6/+6
* Measure WaitLatch's timeout parameter in milliseconds, not microseconds.Tom Lane2011-08-091-7/+3
* Documentation improvement and minor code cleanups for the latch facility.Tom Lane2011-08-091-24/+25
* Replace printf format %i by %dPeter Eisentraut2011-07-261-1/+1
* Silence compiler warning about uninitialized variable.Andrew Dunstan2011-07-251-1/+1
* Introduce a pipe between postmaster and each backend, which can be used toHeikki Linnakangas2011-07-081-27/+71
* Pgindent run before 9.1 beta2.Bruce Momjian2011-06-091-1/+1
* Silence a few compiler warnings from gcc on MinGW.Andrew Dunstan2011-04-231-2/+2
* pgindent run before PG 9.1 beta 1.Bruce Momjian2011-04-101-14/+14
* Automatically terminate replication connections that are idle for moreHeikki Linnakangas2011-03-301-6/+24
* Stamp copyrights for year 2011.Bruce Momjian2011-01-011-1/+1
* Remove cvs keywords from all files.Magnus Hagander2010-09-201-1/+1
* Simplify Windows implementation of latches. There's no need to keep aHeikki Linnakangas2010-09-151-117/+31
* Introduce latches. A latch is a boolean variable, with the capability toHeikki Linnakangas2010-09-111-0/+284