mirror of
https://github.com/postgres/postgres.git
synced 2026-03-07 07:40:31 -05:00
Add pid to the pgident event name on win32.
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.
This commit is contained in:
parent
4443afe595
commit
11e7006dee
1 changed files with 2 additions and 2 deletions
|
|
@ -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.33 2006/10/04 00:30:04 momjian Exp $
|
||||
* $PostgreSQL: pgsql/src/backend/utils/misc/ps_status.c,v 1.33.2.1 2008/01/31 09:21:22 mha Exp $
|
||||
*
|
||||
* Copyright (c) 2000-2006, PostgreSQL Global Development Group
|
||||
* various details abducted from various places
|
||||
|
|
@ -346,7 +346,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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue