diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2000-06-04 01:44:38 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2000-06-04 01:44:38 +0000 |
commit | 209aa77d98d8d44b329e942e6f15aec1284db2ca (patch) | |
tree | d68949ba2f6d558aae721aca8bfd35de4cfdb387 /src/backend/commands/async.c | |
parent | 2ea370a3ceea5f3a30df709dea08c41c1f19e486 (diff) | |
download | postgresql-209aa77d98d8d44b329e942e6f15aec1284db2ca.tar.gz postgresql-209aa77d98d8d44b329e942e6f15aec1284db2ca.zip |
New ps display code, works on more platforms.
Install a default configuration file.
Clean up some funny business in the config file code.
Diffstat (limited to 'src/backend/commands/async.c')
-rw-r--r-- | src/backend/commands/async.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/commands/async.c b/src/backend/commands/async.c index a1eb3598bdd..23396108c80 100644 --- a/src/backend/commands/async.c +++ b/src/backend/commands/async.c @@ -7,7 +7,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/commands/async.c,v 1.62 2000/05/31 00:28:15 petere Exp $ + * $Header: /cvsroot/pgsql/src/backend/commands/async.c,v 1.63 2000/06/04 01:44:29 petere Exp $ * *------------------------------------------------------------------------- */ @@ -771,7 +771,7 @@ ProcessIncomingNotify(void) if (Trace_notify) elog(DEBUG, "ProcessIncomingNotify"); - PS_SET_STATUS("async_notify"); + set_ps_display("async_notify"); notifyInterruptOccurred = 0; @@ -841,7 +841,7 @@ ProcessIncomingNotify(void) */ pq_flush(); - PS_SET_STATUS("idle"); + set_ps_display("idle"); if (Trace_notify) elog(DEBUG, "ProcessIncomingNotify: done"); |