mirror of
https://github.com/postgres/postgres.git
synced 2025-07-05 07:21:24 +03:00
Use FLEXIBLE_ARRAY_MEMBER in some more places.
Fix a batch of structs that are only visible within individual .c files. Michael Paquier
This commit is contained in:
@ -258,7 +258,7 @@ typedef struct MultiXactStateData
|
||||
* stored in pg_control and used as truncation point for pg_multixact. At
|
||||
* checkpoint or restartpoint, unneeded segments are removed.
|
||||
*/
|
||||
MultiXactId perBackendXactIds[1]; /* VARIABLE LENGTH ARRAY */
|
||||
MultiXactId perBackendXactIds[FLEXIBLE_ARRAY_MEMBER];
|
||||
} MultiXactStateData;
|
||||
|
||||
/*
|
||||
@ -1744,8 +1744,9 @@ MultiXactShmemSize(void)
|
||||
{
|
||||
Size size;
|
||||
|
||||
/* We need 2*MaxOldestSlot + 1 perBackendXactIds[] entries */
|
||||
#define SHARED_MULTIXACT_STATE_SIZE \
|
||||
add_size(sizeof(MultiXactStateData), \
|
||||
add_size(offsetof(MultiXactStateData, perBackendXactIds) + sizeof(MultiXactId), \
|
||||
mul_size(sizeof(MultiXactId) * 2, MaxOldestSlot))
|
||||
|
||||
size = SHARED_MULTIXACT_STATE_SIZE;
|
||||
|
Reference in New Issue
Block a user