diff options
Diffstat (limited to 'src/backend/postmaster/postmaster.c')
-rw-r--r-- | src/backend/postmaster/postmaster.c | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/src/backend/postmaster/postmaster.c b/src/backend/postmaster/postmaster.c index 751bb8244d3..73d6dae56d8 100644 --- a/src/backend/postmaster/postmaster.c +++ b/src/backend/postmaster/postmaster.c @@ -37,7 +37,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.558 2008/06/06 22:35:22 alvherre Exp $ + * $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.559 2008/06/19 21:32:56 tgl Exp $ * * NOTES * @@ -3829,16 +3829,6 @@ sigusr1_handler(SIGNAL_ARGS) load_role(); } - if (CheckPostmasterSignal(PMSIGNAL_WAKEN_CHILDREN)) - { - /* - * Send SIGUSR1 to all children (triggers CatchupInterruptHandler). - * See storage/ipc/sinval[adt].c for the use of this. - */ - if (Shutdown <= SmartShutdown) - SignalChildren(SIGUSR1); - } - if (CheckPostmasterSignal(PMSIGNAL_WAKEN_ARCHIVER) && PgArchPID != 0) { |