From: | tgl(at)postgresql(dot)org (Tom Lane) |
---|---|
To: | pgsql-committers(at)postgresql(dot)org |
Subject: | pgsql: Don't try to call posix_fadvise() unless <fcntl.h> supplies a |
Date: | 2006-06-18 18:30:21 |
Message-ID: | 20060618183021.1F3B59FA188@postgresql.org |
Views: | Whole Thread | Raw Message | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-committers |
Log Message:
-----------
Don't try to call posix_fadvise() unless <fcntl.h> supplies a declaration
for it. Hopefully will fix core dump evidenced by some buildfarm members
since fadvise patch went in. The actual definition of the function is not
ABI-compatible with compiler's default assumption in the absence of any
declaration, so it's clearly unsafe to try to call it without seeing a
declaration.
Modified Files:
--------------
pgsql:
configure (r1.495 -> r1.496)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/configure.diff?r1=1.495&r2=1.496)
configure.in (r1.466 -> r1.467)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/configure.in.diff?r1=1.466&r2=1.467)
pgsql/src/backend/access/transam:
xlog.c (r1.239 -> r1.240)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/access/transam/xlog.c.diff?r1=1.239&r2=1.240)
pgsql/src/include:
pg_config.h.in (r1.97 -> r1.98)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/include/pg_config.h.in.diff?r1=1.97&r2=1.98)
From | Date | Subject | |
---|---|---|---|
Next Message | Bruce Momjian | 2006-06-18 19:32:51 | pgsql: Update my email address. |
Previous Message | Tom Lane | 2006-06-18 17:30:48 | pgsql: Fix saveHistory() to not emit bogus complaint during psql exit |