]> granicus.if.org Git - postgresql/commitdiff
Add pid to the pgident event name on win32.
authorMagnus Hagander <magnus@hagander.net>
Thu, 31 Jan 2008 09:21:17 +0000 (09:21 +0000)
committerMagnus Hagander <magnus@hagander.net>
Thu, 31 Jan 2008 09:21:17 +0000 (09:21 +0000)
Should fix a problem where two clusters are running under
two different service accounts and get colliding names,
causing only the first cluster to contain the pgident
event description.

Per report from Stephen Denne.

src/backend/utils/misc/ps_status.c

index c03f5328a9dd30582857eee01b874d707d018db6..8677d0a4024b57b56c8661ba3e24f3261d5ed398 100644 (file)
@@ -5,7 +5,7 @@
  * to contain some useful information. Mechanism differs wildly across
  * platforms.
  *
- * $PostgreSQL: pgsql/src/backend/utils/misc/ps_status.c,v 1.37 2008/01/01 19:45:54 momjian Exp $
+ * $PostgreSQL: pgsql/src/backend/utils/misc/ps_status.c,v 1.38 2008/01/31 09:21:17 mha Exp $
  *
  * Copyright (c) 2000-2008, PostgreSQL Global Development Group
  * various details abducted from various places
@@ -350,7 +350,7 @@ set_ps_display(const char *activity, bool force)
                if (ident_handle != INVALID_HANDLE_VALUE)
                        CloseHandle(ident_handle);
 
-               sprintf(name, "pgident: %s", ps_buffer);
+               sprintf(name, "pgident(%d): %s", MyProcPid, ps_buffer);
 
                ident_handle = CreateEvent(NULL, TRUE, FALSE, name);
        }