Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
e8f43854
Commit
e8f43854
authored
Dec 26, 1996
by
Bruce Momjian
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
pq/signal() portability patch. Also psql copy prompt fix.
parent
7f00f11c
Changes
12
Hide whitespace changes
Inline
Side-by-side
Showing
12 changed files
with
67 additions
and
77 deletions
+67
-77
src/backend/bootstrap/bootstrap.c
src/backend/bootstrap/bootstrap.c
+6
-5
src/backend/libpq/pqcomm.c
src/backend/libpq/pqcomm.c
+5
-4
src/backend/libpq/pqsignal.c
src/backend/libpq/pqsignal.c
+6
-5
src/backend/postmaster/postmaster.c
src/backend/postmaster/postmaster.c
+10
-9
src/backend/storage/lmgr/proc.c
src/backend/storage/lmgr/proc.c
+4
-4
src/backend/tcop/postgres.c
src/backend/tcop/postgres.c
+12
-11
src/bin/psql/psql.c
src/bin/psql/psql.c
+9
-14
src/include/config.h
src/include/config.h
+1
-2
src/include/libpq/pqsignal.h
src/include/libpq/pqsignal.h
+1
-7
src/interfaces/libpq/fe-exec.c
src/interfaces/libpq/fe-exec.c
+6
-4
src/interfaces/libpq/pqsignal.c
src/interfaces/libpq/pqsignal.c
+6
-5
src/interfaces/libpq/pqsignal.h
src/interfaces/libpq/pqsignal.h
+1
-7
No files found.
src/backend/bootstrap/bootstrap.c
View file @
e8f43854
...
...
@@ -7,7 +7,7 @@
* Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.1
2 1996/11/22 04:32:41 bryanh
Exp $
* $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.1
3 1996/12/26 22:06:59 momjian
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -33,6 +33,7 @@
#include "access/skey.h"
#include "access/strat.h"
#include "utils/rel.h"
#include "libpq/pqsignal.h"
#include "storage/block.h"
#include "storage/off.h"
...
...
@@ -291,10 +292,10 @@ BootstrapMain(int argc, char *argv[])
* initialize signal handlers
* ----------------
*/
signal
(
SIGINT
,
(
sig_func
)
die
);
pq
signal
(
SIGINT
,
(
sig_func
)
die
);
#ifndef win32
signal
(
SIGHUP
,
(
sig_func
)
die
);
signal
(
SIGTERM
,
(
sig_func
)
die
);
pq
signal
(
SIGHUP
,
(
sig_func
)
die
);
pq
signal
(
SIGTERM
,
(
sig_func
)
die
);
#endif
/* win32 */
/* --------------------
...
...
@@ -406,7 +407,7 @@ BootstrapMain(int argc, char *argv[])
* ----------------
*/
#ifndef win32
signal
(
SIGHUP
,
handle_warn
);
pq
signal
(
SIGHUP
,
handle_warn
);
if
(
sigsetjmp
(
Warn_restart
,
1
)
!=
0
)
{
#else
...
...
src/backend/libpq/pqcomm.c
View file @
e8f43854
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/libpq/pqcomm.c,v 1.
9 1996/11/24 04:05:20 bryanh
Exp $
* $Header: /cvsroot/pgsql/src/backend/libpq/pqcomm.c,v 1.
10 1996/12/26 22:07:03 momjian
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -36,6 +36,7 @@
*/
#include <stdio.h>
#include <string.h>
#include <signal.h>
#include <errno.h>
#include <fcntl.h>
#ifndef WIN32
...
...
@@ -57,7 +58,7 @@
#include <postgres.h>
#include <libpq/pqsignal.h>
/* substitute for <signal.h> */
#include <libpq/pqsignal.h>
#include <libpq/auth.h>
#include <libpq/libpq.h>
/* where the declarations go */
...
...
@@ -496,7 +497,7 @@ pq_regoob(void (*fptr)())
#else
/* hpux */
fcntl
(
fd
,
F_SETOWN
,
getpid
());
#endif
/* hpux */
(
void
)
signal
(
SIGURG
,
fptr
);
(
void
)
pq
signal
(
SIGURG
,
fptr
);
#endif
/* WIN32 */
}
...
...
@@ -504,7 +505,7 @@ void
pq_unregoob
()
{
#ifndef WIN32
signal
(
SIGURG
,
SIG_DFL
);
pq
signal
(
SIGURG
,
SIG_DFL
);
#endif
/* WIN32 */
}
...
...
src/backend/libpq/pqsignal.c
View file @
e8f43854
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/libpq/pqsignal.c,v 1.
4 1996/11/18 02:25:09 bryanh
Exp $
* $Header: /cvsroot/pgsql/src/backend/libpq/pqsignal.c,v 1.
5 1996/12/26 22:07:08 momjian
Exp $
*
* NOTES
* This shouldn't be in libpq, but the monitor and some other
...
...
@@ -39,12 +39,16 @@
* ------------------------------------------------------------------------*/
#include <postgres.h>
#include <signal.h>
#include <libpq/pqsignal.h>
pqsigfunc
pqsignal
(
int
signo
,
pqsigfunc
func
)
{
#if defined(USE_POSIX_SIGNALS)
#if !defined(USE_POSIX_SIGNALS)
return
signal
(
signo
,
func
);
#else
struct
sigaction
act
,
oact
;
act
.
sa_handler
=
func
;
...
...
@@ -56,8 +60,5 @@ pqsignal(int signo, pqsigfunc func)
if
(
sigaction
(
signo
,
&
act
,
&
oact
)
<
0
)
return
(
SIG_ERR
);
return
(
oact
.
sa_handler
);
#else
/* !USE_POSIX_SIGNALS */
Assert
(
0
);
return
0
;
#endif
/* !USE_POSIX_SIGNALS */
}
src/backend/postmaster/postmaster.c
View file @
e8f43854
...
...
@@ -10,7 +10,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.
29 1996/12/26 17:49:05
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/postmaster/postmaster.c,v 1.
30 1996/12/26 22:07:17
momjian Exp $
*
* NOTES
*
...
...
@@ -40,7 +40,7 @@
#include "postgres.h"
#include
"libpq/pqsignal.h"
/* substitute for <signal.h> */
#include
<signal.h>
#include <string.h>
#include <stdlib.h>
...
...
@@ -73,6 +73,7 @@
#include "libpq/libpq.h"
#include "libpq/auth.h"
#include "libpq/pqcomm.h"
#include "libpq/pqsignal.h"
#include "miscadmin.h"
#include "version.h"
#include "lib/dllist.h"
...
...
@@ -394,14 +395,14 @@ PostmasterMain(int argc, char *argv[])
if
(
silentflag
)
pmdaemonize
();
signal
(
SIGINT
,
pmdie
);
pq
signal
(
SIGINT
,
pmdie
);
#ifndef WIN32
signal
(
SIGCHLD
,
reaper
);
signal
(
SIGTTIN
,
SIG_IGN
);
signal
(
SIGTTOU
,
SIG_IGN
);
signal
(
SIGHUP
,
pmdie
);
signal
(
SIGTERM
,
pmdie
);
signal
(
SIGCONT
,
dumpstatus
);
pq
signal
(
SIGCHLD
,
reaper
);
pq
signal
(
SIGTTIN
,
SIG_IGN
);
pq
signal
(
SIGTTOU
,
SIG_IGN
);
pq
signal
(
SIGHUP
,
pmdie
);
pq
signal
(
SIGTERM
,
pmdie
);
pq
signal
(
SIGCONT
,
dumpstatus
);
#endif
/* WIN32 */
...
...
src/backend/storage/lmgr/proc.c
View file @
e8f43854
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/storage/lmgr/proc.c,v 1.1
1 1996/11/27 07:17:48 vadim
Exp $
* $Header: /cvsroot/pgsql/src/backend/storage/lmgr/proc.c,v 1.1
2 1996/12/26 22:07:28 momjian
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -46,7 +46,7 @@
* This is so that we can support more backends. (system-wide semaphore
* sets run out pretty fast.) -ay 4/95
*
* $Header: /cvsroot/pgsql/src/backend/storage/lmgr/proc.c,v 1.1
1 1996/11/27 07:17:48 vadim
Exp $
* $Header: /cvsroot/pgsql/src/backend/storage/lmgr/proc.c,v 1.1
2 1996/12/26 22:07:28 momjian
Exp $
*/
#include <sys/time.h>
#ifndef WIN32
...
...
@@ -65,7 +65,7 @@
#include "postgres.h"
#include "miscadmin.h"
#include "libpq/pqsignal.h"
/* substitute for <signal.h> */
#include "libpq/pqsignal.h"
#include "access/xact.h"
#include "utils/hsearch.h"
...
...
@@ -157,7 +157,7 @@ InitProcess(IPCKey key)
* ------------------
*/
#ifndef WIN32
signal
(
SIGALRM
,
HandleDeadLock
);
pq
signal
(
SIGALRM
,
HandleDeadLock
);
#endif
/* WIN32 we'll have to figure out how to handle this later */
SpinAcquire
(
ProcStructLock
);
...
...
src/backend/tcop/postgres.c
View file @
e8f43854
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.2
3 1996/12/07 04:39:06
momjian Exp $
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.2
4 1996/12/26 22:07:40
momjian Exp $
*
* NOTES
* this is the "main" module of the postgres backend and
...
...
@@ -15,11 +15,11 @@
*
*-------------------------------------------------------------------------
*/
#include "libpq/pqsignal.h"
/* substitute for <signal.h> */
#include <unistd.h>
#include <stdio.h>
#include <string.h>
#include <signal.h>
#include <time.h>
#include <setjmp.h>
#include <sys/time.h>
...
...
@@ -77,6 +77,7 @@
#include "tcop/fastpath.h"
#include "libpq/libpq.h"
#include "libpq/pqsignal.h"
#include "rewrite/rewriteHandler.h"
/* for QueryRewrite() */
/* ----------------
...
...
@@ -820,15 +821,15 @@ PostgresMain(int argc, char *argv[])
* register signal handlers.
* ----------------
*/
signal
(
SIGINT
,
die
);
pq
signal
(
SIGINT
,
die
);
#ifndef WIN32
signal
(
SIGHUP
,
die
);
signal
(
SIGTERM
,
die
);
signal
(
SIGPIPE
,
die
);
signal
(
SIGUSR1
,
quickdie
);
signal
(
SIGUSR2
,
Async_NotifyHandler
);
signal
(
SIGFPE
,
FloatExceptionHandler
);
pq
signal
(
SIGHUP
,
die
);
pq
signal
(
SIGTERM
,
die
);
pq
signal
(
SIGPIPE
,
die
);
pq
signal
(
SIGUSR1
,
quickdie
);
pq
signal
(
SIGUSR2
,
Async_NotifyHandler
);
pq
signal
(
SIGFPE
,
FloatExceptionHandler
);
#endif
/* WIN32 */
/* --------------------
...
...
@@ -1246,7 +1247,7 @@ PostgresMain(int argc, char *argv[])
*/
#ifndef WIN32
signal
(
SIGHUP
,
handle_warn
);
pq
signal
(
SIGHUP
,
handle_warn
);
if
(
sigsetjmp
(
Warn_restart
,
1
)
!=
0
)
{
#else
...
...
@@ -1271,7 +1272,7 @@ PostgresMain(int argc, char *argv[])
*/
if
(
IsUnderPostmaster
==
false
)
{
puts
(
"
\n
POSTGRES backend interactive interface"
);
puts
(
"$Revision: 1.2
3 $ $Date: 1996/12/07 04:39:06
$"
);
puts
(
"$Revision: 1.2
4 $ $Date: 1996/12/26 22:07:40
$"
);
}
/* ----------------
...
...
src/bin/psql/psql.c
View file @
e8f43854
...
...
@@ -7,7 +7,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.4
1 1996/12/26 20:56:40 bryanh
Exp $
* $Header: /cvsroot/pgsql/src/bin/psql/Attic/psql.c,v 1.4
2 1996/12/26 22:07:57 momjian
Exp $
*
*-------------------------------------------------------------------------
*/
...
...
@@ -22,6 +22,7 @@
#include <ctype.h>
#include "postgres.h"
#include "libpq-fe.h"
#include "pqsignal.h"
#include "stringutils.h"
#include "psqlHelp.h"
#ifdef NEED_STRDUP
...
...
@@ -513,19 +514,10 @@ SendQuery(bool * success_p, PsqlSettings * settings, const char *query,
break
;
case
PGRES_COPY_IN
:
*
success_p
=
true
;
if
(
copy_in
)
{
if
(
copy_in
)
handleCopyIn
(
results
,
false
,
copystream
);
}
else
{
char
c
;
/*
* eat extra newline still in input buffer
*
*/
fflush
(
stdin
);
if
((
c
=
getc
(
stdin
))
!=
'\n'
&&
c
!=
EOF
)
(
void
)
ungetc
(
c
,
stdin
);
else
handleCopyIn
(
results
,
!
settings
->
quiet
,
stdin
);
}
break
;
case
PGRES_NONFATAL_ERROR
:
case
PGRES_FATAL_ERROR
:
...
...
@@ -1676,15 +1668,18 @@ setFout(PsqlSettings * ps, char *fname)
else
fclose
(
ps
->
queryFout
);
}
if
(
!
fname
)
if
(
!
fname
)
{
ps
->
queryFout
=
stdout
;
pqsignal
(
SIGPIPE
,
SIG_DFL
);
}
else
{
if
(
*
fname
==
'|'
)
{
signal
(
SIGPIPE
,
SIG_IGN
);
pq
signal
(
SIGPIPE
,
SIG_IGN
);
ps
->
queryFout
=
popen
(
fname
+
1
,
"w"
);
ps
->
pipe
=
1
;
}
else
{
ps
->
queryFout
=
fopen
(
fname
,
"w"
);
pqsignal
(
SIGPIPE
,
SIG_DFL
);
ps
->
pipe
=
0
;
}
if
(
!
ps
->
queryFout
)
{
...
...
src/include/config.h
View file @
e8f43854
...
...
@@ -85,8 +85,7 @@
#if defined(dgux)
# define LINUX_ELF
# define NEED_UNION_SEMUN
# define __USE_POSIX_SIGNALS
# define -DUSE_POSIX_SIGNALS
# define USE_POSIX_SIGNALS
#endif
#if defined(hpux)
...
...
src/include/libpq/pqsignal.h
View file @
e8f43854
...
...
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: pqsignal.h,v 1.
4 1996/11/24 04:07:17 bryanh
Exp $
* $Id: pqsignal.h,v 1.
5 1996/12/26 22:08:13 momjian
Exp $
*
* NOTES
* This shouldn't be in libpq, but the monitor and some other
...
...
@@ -17,14 +17,8 @@
#ifndef PQSIGNAL_H
#define PQSIGNAL_H
#include <signal.h>
typedef
void
(
*
pqsigfunc
)(
int
);
extern
pqsigfunc
pqsignal
(
int
signo
,
pqsigfunc
func
);
#if defined(USE_POSIX_SIGNALS)
#define signal(signo, handler) pqsignal(signo, (pqsigfunc)(handler))
#endif
/* USE_POSIX_SIGNALS */
#endif
/* PQSIGNAL_H */
src/interfaces/libpq/fe-exec.c
View file @
e8f43854
...
...
@@ -7,22 +7,24 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-exec.c,v 1.2
3 1996/12/24 09:03:16 bryanh
Exp $
* $Header: /cvsroot/pgsql/src/interfaces/libpq/fe-exec.c,v 1.2
4 1996/12/26 22:08:21 momjian
Exp $
*
*-------------------------------------------------------------------------
*/
#include <stdlib.h>
#include <unistd.h>
#include <stdio.h>
#include <signal.h>
#include <string.h>
#include <errno.h>
#include "postgres.h"
#include "libpq/pqcomm.h"
#include "libpq/pqsignal.h"
#include "libpq-fe.h"
#include <signal.h>
#include <sys/ioctl.h>
#include TERMIOS_H_LOCATION
#ifdef TIOCGWINSZ
struct
winsize
screen_size
;
#else
...
...
@@ -1125,7 +1127,7 @@ PQprint(FILE *fout,
fout
=
popen
(
pagerenv
,
"w"
);
if
(
fout
)
{
usePipe
=
1
;
signal
(
SIGPIPE
,
SIG_IGN
);
pq
signal
(
SIGPIPE
,
SIG_IGN
);
}
else
fout
=
stdout
;
}
...
...
@@ -1217,7 +1219,7 @@ PQprint(FILE *fout,
free
(
fieldNames
);
if
(
usePipe
)
{
pclose
(
fout
);
signal
(
SIGPIPE
,
SIG_DFL
);
pq
signal
(
SIGPIPE
,
SIG_DFL
);
}
if
(
border
)
free
(
border
);
...
...
src/interfaces/libpq/pqsignal.c
View file @
e8f43854
...
...
@@ -8,7 +8,7 @@
*
*
* IDENTIFICATION
* $Header: /cvsroot/pgsql/src/interfaces/libpq/pqsignal.c,v 1.
2 1996/11/08 06:02
:30 momjian Exp $
* $Header: /cvsroot/pgsql/src/interfaces/libpq/pqsignal.c,v 1.
3 1996/12/26 22:08
:30 momjian Exp $
*
* NOTES
* This shouldn't be in libpq, but the monitor and some other
...
...
@@ -18,12 +18,16 @@
*/
#include <stdlib.h>
#include <signal.h>
#include "libpq/pqsignal.h"
pqsigfunc
pqsignal
(
int
signo
,
pqsigfunc
func
)
{
#if defined(USE_POSIX_SIGNALS)
#if !defined(USE_POSIX_SIGNALS)
return
signal
(
signo
,
func
);
#else
struct
sigaction
act
,
oact
;
act
.
sa_handler
=
func
;
...
...
@@ -35,8 +39,5 @@ pqsignal(int signo, pqsigfunc func)
if
(
sigaction
(
signo
,
&
act
,
&
oact
)
<
0
)
return
(
SIG_ERR
);
return
(
oact
.
sa_handler
);
#else
/* !USE_POSIX_SIGNALS */
exit
(
1
);
/* this should never be reached, pqsignal should only
be called if USE_POSIX_SIGNALS is true*/
#endif
/* !USE_POSIX_SIGNALS */
}
src/interfaces/libpq/pqsignal.h
View file @
e8f43854
...
...
@@ -6,7 +6,7 @@
*
* Copyright (c) 1994, Regents of the University of California
*
* $Id: pqsignal.h,v 1.
1.1.1 1996/07/09 06:22:17 scrappy
Exp $
* $Id: pqsignal.h,v 1.
2 1996/12/26 22:08:34 momjian
Exp $
*
* NOTES
* This shouldn't be in libpq, but the monitor and some other
...
...
@@ -17,16 +17,10 @@
#ifndef PQSIGNAL_H
#define PQSIGNAL_H
#include <signal.h>
#include "c.h"
typedef
void
(
*
pqsigfunc
)(
int
);
extern
pqsigfunc
pqsignal
(
int
signo
,
pqsigfunc
func
);
#if defined(USE_POSIX_SIGNALS)
#define signal(signo, handler) pqsignal(signo, (pqsigfunc)(handler))
#endif
/* USE_POSIX_SIGNALS */
#endif
/* PQSIGNAL_H */
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment