| From: | Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> |
|---|---|
| To: | pgsql-committers(at)lists(dot)postgresql(dot)org |
| Subject: | pgsql: Test honestly for <sys/signalfd.h>. |
| Date: | 2022-02-09 19:25:08 |
| Message-ID: | E1nHsaS-0006lk-7z@gemulon.postgresql.org |
| Views: | Whole Thread | Raw Message | Download mbox | Resend email |
| Thread: | |
| Lists: | pgsql-committers |
Test honestly for <sys/signalfd.h>.
Commit 6a2a70a02 supposed that any platform having <sys/epoll.h>
would also have <sys/signalfd.h>. It turns out there are still a
few people using platforms where that's not so, so we'd better make
a separate configure probe for it. But since it took this long to
notice, I'm content with the decision to not have a separate code
path for epoll-only machines; we'll just fall back to using poll()
for these stragglers.
Per gripe from Gabriela Serventi. Back-patch to v14 where this
code came in.
Discussion: https://postgr.es/m/CAHOHWE-JjJDfcYuLAAEO7Jk07atFAU47z8TzHzg71gbC0aMy=g@mail.gmail.com
Branch
------
REL_14_STABLE
Details
-------
https://git.postgresql.org/pg/commitdiff/c23461a22a1ead0a34dc209c2918ec4ccaf61475
Modified Files
--------------
configure | 2 +-
configure.ac | 1 +
src/backend/storage/ipc/latch.c | 9 ++++-----
src/include/pg_config.h.in | 3 +++
src/tools/msvc/Solution.pm | 1 +
5 files changed, 10 insertions(+), 6 deletions(-)
| From | Date | Subject | |
|---|---|---|---|
| Next Message | Tom Lane | 2022-02-09 22:06:36 | pgsql: Further tweaks for psql's new tab-completion logic. |
| Previous Message | Tomas Vondra | 2022-02-09 15:27:39 | Re: pgsql: Avoid race in RelationBuildDesc() affecting CREATE INDEX CONCURR |