diff options
Diffstat (limited to 'src/include/postmaster/postmaster.h')
-rw-r--r-- | src/include/postmaster/postmaster.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/postmaster/postmaster.h b/src/include/postmaster/postmaster.h index 39566ee2bd5..92497cd6a0f 100644 --- a/src/include/postmaster/postmaster.h +++ b/src/include/postmaster/postmaster.h @@ -48,7 +48,7 @@ typedef struct } PMChild; #ifdef EXEC_BACKEND -extern int num_pmchild_slots; +extern PGDLLIMPORT int num_pmchild_slots; #endif /* GUC options */ @@ -117,7 +117,7 @@ pg_noreturn extern void SubPostmasterMain(int argc, char *argv[]); #endif /* defined in pmchild.c */ -extern dlist_head ActiveChildList; +extern PGDLLIMPORT dlist_head ActiveChildList; extern void InitPostmasterChildSlots(void); extern PMChild *AssignPostmasterChildSlot(BackendType btype); |