pgsql: Use WaitLatch, not pg_usleep, for delaying in pg_sleep(). - Mailing list pgsql-committers

From Tom Lane
Subject pgsql: Use WaitLatch, not pg_usleep, for delaying in pg_sleep().
Date
Msg-id E1Unx1H-00034f-HX@gemulon.postgresql.org
Whole thread Raw
List pgsql-committers
Use WaitLatch, not pg_usleep, for delaying in pg_sleep().

This avoids platform-dependent behavior wherein pg_sleep() might fail to be
interrupted by statement timeout, query cancel, SIGTERM, etc.  Also, since
there's no reason to wake up once a second any more, we can reduce the
power consumption of a sleeping backend a tad.

Back-patch to 9.3, since use of SA_RESTART for SIGALRM makes this a bigger
issue than it used to be.

Branch
------
master

Details
-------
http://git.postgresql.org/pg/commitdiff/a64ca63e59c11d8fe6db24eee3d82b61db7c2c83

Modified Files
--------------
src/backend/utils/adt/misc.c |   27 +++++++++++++++++----------
1 file changed, 17 insertions(+), 10 deletions(-)


pgsql-committers by date:

Previous
From: Fujii Masao
Date:
Subject: pgsql: Fix pg_restore -l with the directory archive to display the corr
Next
From: Fujii Masao
Date:
Subject: pgsql: Fix description of archive format which pg_restore -j supports.