index
:
user/sven/postgresql.git
copy-snapshot-fix
master
origin/HEAD
origin/REL2_0B
origin/REL6_4
origin/REL6_5_PATCHES
origin/REL7_0_PATCHES
origin/REL7_1_STABLE
origin/REL7_2_STABLE
origin/REL7_3_STABLE
origin/REL7_4_STABLE
origin/REL8_0_STABLE
origin/REL8_1_STABLE
origin/REL8_2_STABLE
origin/REL8_3_STABLE
origin/REL8_4_STABLE
origin/REL8_5_ALPHA1_BRANCH
origin/REL8_5_ALPHA2_BRANCH
origin/REL8_5_ALPHA3_BRANCH
origin/REL9_0_ALPHA4_BRANCH
origin/REL9_0_ALPHA5_BRANCH
origin/REL9_0_STABLE
origin/REL9_1_STABLE
origin/REL9_2_STABLE
origin/REL9_3_STABLE
origin/REL9_4_STABLE
origin/REL9_5_STABLE
origin/REL9_6_STABLE
origin/REL_10_STABLE
origin/REL_11_STABLE
origin/REL_12_STABLE
origin/REL_13_STABLE
origin/REL_14_STABLE
origin/REL_15_STABLE
origin/REL_16_STABLE
origin/REL_17_STABLE
origin/REL_18_STABLE
origin/Release_1_0_3
origin/WIN32_DEV
origin/ecpg_big_bison
origin/master
PostgreSQL
Sven Wegener
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
backend
/
port
/
unix_latch.c
Age
Commit message (
Expand
)
Author
2017-04-21
Avoid depending on non-POSIX behavior of fcntl(2).
Tom Lane
2015-07-18
Make WaitLatchOrSocket's timeout detection more robust.
Tom Lane
2015-01-13
Add barriers to the latch code.
Andres Freund
2015-01-13
Allow latches to wait for socket writability without waiting for readability.
Andres Freund
2015-01-06
Update copyright for 2015
Bruce Momjian
2014-05-06
pgindent run for 9.4
Bruce Momjian
2014-01-07
Update copyright for 2014
Bruce Momjian
2013-01-01
Update copyrights for 2013
Bruce Momjian
2012-11-18
Assert that WaitLatch's timeout is not more than INT_MAX milliseconds.
Tom Lane
2012-11-08
Fix WaitLatch() to return promptly when the requested timeout expires.
Tom Lane
2012-10-14
Split up process latch initialization for more-fail-soft behavior.
Tom Lane
2012-07-02
Make walsender more responsive.
Robert Haas
2012-06-10
Run pgindent on 9.2 source tree in preparation for first 9.3
Bruce Momjian
2012-05-14
Assert that WaitLatchOrSocket callers cannot wait only for writability.
Tom Lane
2012-05-12
Fix WaitLatchOrSocket to handle EOF on socket correctly.
Tom Lane
2012-05-10
Make WaitLatch's WL_POSTMASTER_DEATH result trustworthy; simplify callers.
Tom Lane
2012-01-15
Fix poll() implementation of WaitLatchOrSocket to notice postmaster death.
Heikki Linnakangas
2012-01-01
Update copyright notices for year 2012.
Bruce Momjian
2011-08-11
Teach unix_latch.c to use poll() where available.
Tom Lane
2011-08-10
Change the autovacuum launcher to use WaitLatch instead of a poll loop.
Tom Lane
2011-08-09
Measure WaitLatch's timeout parameter in milliseconds, not microseconds.
Tom Lane
2011-08-09
Documentation improvement and minor code cleanups for the latch facility.
Tom Lane
2011-07-08
Introduce a pipe between postmaster and each backend, which can be used to
Heikki Linnakangas
2011-04-10
pgindent run before PG 9.1 beta 1.
Bruce Momjian
2011-03-30
Automatically terminate replication connections that are idle for more
Heikki Linnakangas
2011-01-01
Stamp copyrights for year 2011.
Bruce Momjian
2010-09-20
Remove cvs keywords from all files.
Magnus Hagander
2010-09-15
Simplify Windows implementation of latches. There's no need to keep a
Heikki Linnakangas
2010-09-13
Add a comment noting that the owner_pid test in OwnLatch is just a sanity
Heikki Linnakangas
2010-09-11
Add missing #includes, needed on some platforms. This should make
Heikki Linnakangas
2010-09-11
Introduce latches. A latch is a boolean variable, with the capability to
Heikki Linnakangas