diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2004-05-29 22:48:23 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2004-05-29 22:48:23 +0000 |
commit | 076a055acf3c55314de267c62b03191586d79cf6 (patch) | |
tree | 1bfb8a8755cd393c6615bd55a7a4bb7ad404781c /src/backend/tcop/postgres.c | |
parent | d531fd2cdc819e7ca026c2ab9e65a7f7c49b1906 (diff) | |
download | postgresql-076a055acf3c55314de267c62b03191586d79cf6.tar.gz postgresql-076a055acf3c55314de267c62b03191586d79cf6.zip |
Separate out bgwriter code into a logically separate module, rather
than being random pieces of other files. Give bgwriter responsibility
for all checkpoint activity (other than a post-recovery checkpoint);
so this child process absorbs the functionality of the former transient
checkpoint and shutdown subprocesses. While at it, create an actual
include file for postmaster.c, which for some reason never had its own
file before.
Diffstat (limited to 'src/backend/tcop/postgres.c')
-rw-r--r-- | src/backend/tcop/postgres.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/tcop/postgres.c b/src/backend/tcop/postgres.c index 7acaf9117db..556528d6d2d 100644 --- a/src/backend/tcop/postgres.c +++ b/src/backend/tcop/postgres.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/tcop/postgres.c,v 1.416 2004/05/28 05:13:12 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/tcop/postgres.c,v 1.417 2004/05/29 22:48:20 tgl Exp $ * * NOTES * this is the "main" module of the postgres backend and @@ -110,7 +110,7 @@ static char *stack_base_ptr = NULL; * will reread the configuration file. (Better than doing the * reading in the signal handler, ey?) */ -static volatile bool got_SIGHUP = false; +static volatile sig_atomic_t got_SIGHUP = false; /* * Flag to keep track of whether we have started a transaction. |