Lists: | pgsql-bugsPostg토토 사이트 |
---|
From: | Peter Galbavy <Peter(dot)Galbavy(at)knowledge(dot)com> |
---|---|
To: | pgsql-bugs(at)postgresql(dot)org, pgsql-ports(at)postgresql(dot)org |
Subject: | did this ever get integrated ? (for OpenBSD) |
Date: | 1999-05-07 14:26:57 |
Message-ID: | 19990507152657.A1296@office.knowledge.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pgsql-bugs pgsql-ports |
Did anyone ever pick this up ?
(Please ignore the #if 1 ... 'endif - this was a quick test hack, since
I lost the original patch :)
Index: postgresql/src/backend/utils/error/elog.c
diff -c postgresql/src/backend/utils/error/elog.c:1.1.1.3 postgresql/src/backend/utils/error/elog.c:1.2
*** postgresql/src/backend/utils/error/elog.c:1.1.1.3 Mon Mar 29 11:45:58 1999
--- postgresql/src/backend/utils/error/elog.c Mon Mar 29 12:40:50 1999
***************
*** 7,13 ****
*
*
* IDENTIFICATION
! * $Header: /a/cvs/postgresql/src/backend/utils/error/elog.c,v 1.1.1.3 1999/03/29 10:45:58 peter Exp $
*
*-------------------------------------------------------------------------
*/
--- 7,13 ----
*
*
* IDENTIFICATION
! * $Header: /a/cvs/postgresql/src/backend/utils/error/elog.c,v 1.2 1999/03/29 11:40:50 peter Exp $
*
*-------------------------------------------------------------------------
*/
***************
*** 23,28 ****
--- 23,29 ----
#include <errno.h>
#include <unistd.h>
#include <signal.h>
+ #include <setjmp.h>
#ifdef USE_SYSLOG
#include <syslog.h>
***************
*** 221,228 ****
--- 222,235 ----
ProcReleaseSpins(NULL); /* get rid of spinlocks we hold */
if (!InError)
{
+ #if 1
+ extern sigjmp_buf Warn_restart;
+
+ siglongjmp(Warn_restart, 1);
+ #else
kill(MyProcPid, SIGQUIT); /* abort to traffic cop */
pause();
+ #endif
}
/*
--
Peter Galbavy
Knowledge Matters Ltd
http://www.knowledge.com /http://www.wonderland.org/ http://www.literature.org/
From: | Bruce Momjian <maillist(at)candle(dot)pha(dot)pa(dot)us> |
---|---|
To: | Peter Galbavy <Peter(dot)Galbavy(at)knowledge(dot)com> |
Cc: | pgsql-bugs(at)postgreSQL(dot)org, pgsql-ports(at)postgreSQL(dot)org |
Subject: | Re: [BUGS] did this ever get integrated ? (for OpenBSD) |
Date: | 1999-05-10 17:26:49 |
Message-ID: | 199905101726.NAA09050@candle.pha.pa.us |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pgsql-bugs pgsql-ports |
Yes, this was applied. Not sure when.
> Did anyone ever pick this up ?
>
> (Please ignore the #if 1 ... 'endif - this was a quick test hack, since
> I lost the original patch :)
>
> Index: postgresql/src/backend/utils/error/elog.c
> diff -c postgresql/src/backend/utils/error/elog.c:1.1.1.3 postgresql/src/backend/utils/error/elog.c:1.2
> *** postgresql/src/backend/utils/error/elog.c:1.1.1.3 Mon Mar 29 11:45:58 1999
> --- postgresql/src/backend/utils/error/elog.c Mon Mar 29 12:40:50 1999
> ***************
> *** 7,13 ****
> *
> *
> * IDENTIFICATION
> ! * $Header: /a/cvs/postgresql/src/backend/utils/error/elog.c,v 1.1.1.3 1999/03/29 10:45:58 peter Exp $
> *
> *-------------------------------------------------------------------------
> */
> --- 7,13 ----
> *
> *
> * IDENTIFICATION
> ! * $Header: /a/cvs/postgresql/src/backend/utils/error/elog.c,v 1.2 1999/03/29 11:40:50 peter Exp $
> *
> *-------------------------------------------------------------------------
> */
> ***************
> *** 23,28 ****
> --- 23,29 ----
> #include <errno.h>
> #include <unistd.h>
> #include <signal.h>
> + #include <setjmp.h>
>
> #ifdef USE_SYSLOG
> #include <syslog.h>
> ***************
> *** 221,228 ****
> --- 222,235 ----
> ProcReleaseSpins(NULL); /* get rid of spinlocks we hold */
> if (!InError)
> {
> + #if 1
> + extern sigjmp_buf Warn_restart;
> +
> + siglongjmp(Warn_restart, 1);
> + #else
> kill(MyProcPid, SIGQUIT); /* abort to traffic cop */
> pause();
> + #endif
> }
>
> /*
>
> --
> Peter Galbavy
> Knowledge Matters Ltd
> http://www.knowledge.com /http://www.wonderland.org/ http://www.literature.org/
>
>
--
Bruce Momjian | http://www.op.net/~candle
maillist(at)candle(dot)pha(dot)pa(dot)us | (610) 853-3000
+ If your life is a hard drive, | 830 Blythe Avenue
+ Christ can be your backup. | Drexel Hill, Pennsylvania 19026
From: | gjerde(at)icebox(dot)org |
---|---|
To: | pgsql-ports(at)postgreSQL(dot)org |
Subject: | bin/psql compile fails on Redhat 6.0 (glibc 2.1) |
Date: | 1999-05-10 18:08:32 |
Message-ID: | Pine.LNX.4.05.9905101305380.10554-100000@snowman.icebox.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Lists: | pgsql-bugs Postg토토 사이트 |
bin/psql is now failing to compile on redhat 6.0.
Libc: glibc 2.1
kernel: 2.2.7(and 2.2.5)
compiler: egcs 1.1.2
This is CVS as of today (monday) at 10am(Central Time).
I believe cvs from friday DID compile.
gcc -I../../interfaces/libpq -I../../include -I../../backend -O2 -Wall
-Wmissing-prototypes -c psql.c -o psql.o
psql.c:152: initializer element is not constant
psql.c: In function `handleCopyIn':
psql.c:3093: warning: `c' might be used uninitialized in this function
make[2]: *** [psql.o] Error 1
make[2]: Leaving directory `/root/new/pgsql/src/bin/psql'