mirror of
https://github.com/postgres/postgres.git
synced 2025-07-14 08:21:07 +03:00
Fix one more cast for _open_osfhandle().
Tsutomu Yamada
This commit is contained in:
@ -37,7 +37,7 @@
|
||||
*
|
||||
*
|
||||
* IDENTIFICATION
|
||||
* $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.597 2009/12/19 01:32:34 sriggs Exp $
|
||||
* $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.598 2010/01/02 12:01:29 mha Exp $
|
||||
*
|
||||
* NOTES
|
||||
*
|
||||
@ -403,7 +403,11 @@ typedef struct
|
||||
int ListenSocket[MAXLISTEN];
|
||||
long MyCancelKey;
|
||||
int MyPMChildSlot;
|
||||
#ifndef WIN32
|
||||
unsigned long UsedShmemSegID;
|
||||
#else
|
||||
HANDLE UsedShmemSegID;
|
||||
#endif
|
||||
void *UsedShmemSegAddr;
|
||||
slock_t *ShmemLock;
|
||||
VariableCache ShmemVariableCache;
|
||||
|
Reference in New Issue
Block a user