summaryrefslogtreecommitdiff
path: root/src/backend/port/unix_latch.c
Commit message (Expand)AuthorAgeFilesLines
* Make WaitLatchOrSocket's timeout detection more robust.Tom Lane2015-07-181-7/+13
* Add barriers to the latch code.Andres Freund2015-01-131-9/+7
* Allow latches to wait for socket writability without waiting for readability.Andres Freund2015-01-131-7/+24
* Update copyright for 2015Bruce Momjian2015-01-061-1/+1
* pgindent run for 9.4Bruce Momjian2014-05-061-3/+3
* 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-4/+6
* Fix WaitLatch() to return promptly when the requested timeout expires.Tom Lane2012-11-081-78/+118
* Split up process latch initialization for more-fail-soft behavior.Tom Lane2012-10-141-34/+38
* Make walsender more responsive.Robert Haas2012-07-021-0/+3
* Run pgindent on 9.2 source tree in preparation for first 9.3Bruce Momjian2012-06-101-17/+19
* Assert that WaitLatchOrSocket callers cannot wait only for writability.Tom Lane2012-05-141-2/+8
* Fix WaitLatchOrSocket to handle EOF on socket correctly.Tom Lane2012-05-121-1/+1
* Make WaitLatch's WL_POSTMASTER_DEATH result trustworthy; simplify callers.Tom Lane2012-05-101-11/+24
* Fix poll() implementation of WaitLatchOrSocket to notice postmaster death.Heikki Linnakangas2012-01-151-1/+6
* Update copyright notices for year 2012.Bruce Momjian2012-01-011-1/+1
* Teach unix_latch.c to use poll() where available.Tom Lane2011-08-111-8/+98
* Change the autovacuum launcher to use WaitLatch instead of a poll loop.Tom Lane2011-08-101-7/+40
* Measure WaitLatch's timeout parameter in milliseconds, not microseconds.Tom Lane2011-08-091-3/+4
* Documentation improvement and minor code cleanups for the latch facility.Tom Lane2011-08-091-87/+79
* Introduce a pipe between postmaster and each backend, which can be used toHeikki Linnakangas2011-07-081-31/+70
* pgindent run before PG 9.1 beta 1.Bruce Momjian2011-04-101-40/+40
* Automatically terminate replication connections that are idle for moreHeikki Linnakangas2011-03-301-7/+19
* 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-26/+5
* Add a comment noting that the owner_pid test in OwnLatch is just a sanityHeikki Linnakangas2010-09-131-1/+2
* Add missing #includes, needed on some platforms. This should makeHeikki Linnakangas2010-09-111-1/+6
* Introduce latches. A latch is a boolean variable, with the capability toHeikki Linnakangas2010-09-111-0/+435