[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: guile-pg
From: |
Thien-Thi Nguyen |
Subject: |
Re: guile-pg |
Date: |
Sat, 30 Nov 2002 00:47:32 -0800 |
From: David Pirotte <address@hidden>
Date: Sat, 30 Nov 2002 01:22:14 -0500
extern int terminating;
if (!terminating)
./libpostgres_lo.c
this variable can be used to control how a fd-flush failure is handled:
whether to throw scm_syserror or continue after writing a message to
stderr (fd 2, actually). throwing syserror is probably sufficient. to
work around for now, change the line to:
static int terminating = 0;
keep the bug reports flowing!
thi