File tree Expand file tree Collapse file tree 5 files changed +10
-10
lines changed Expand file tree Collapse file tree 5 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ extern PGDLLIMPORT bool Log_truncate_on_rotation;
76
76
extern PGDLLIMPORT int Log_file_mode ;
77
77
78
78
#ifdef EXEC_BACKEND
79
- extern pg_time_t first_syslogger_file_time ;
79
+ extern PGDLLIMPORT pg_time_t first_syslogger_file_time ;
80
80
#endif
81
81
82
82
#ifndef WIN32
Original file line number Diff line number Diff line change @@ -58,7 +58,7 @@ typedef enum
58
58
typedef struct PMSignalData PMSignalData ;
59
59
60
60
#ifdef EXEC_BACKEND
61
- extern volatile PMSignalData * PMSignalState ;
61
+ extern PGDLLIMPORT volatile PMSignalData * PMSignalState ;
62
62
#endif
63
63
64
64
/*
Original file line number Diff line number Diff line change @@ -454,8 +454,8 @@ extern PGDLLIMPORT int IdleSessionTimeout;
454
454
extern PGDLLIMPORT bool log_lock_waits ;
455
455
456
456
#ifdef EXEC_BACKEND
457
- extern slock_t * ProcStructLock ;
458
- extern PGPROC * AuxiliaryProcs ;
457
+ extern PGDLLIMPORT slock_t * ProcStructLock ;
458
+ extern PGDLLIMPORT PGPROC * AuxiliaryProcs ;
459
459
#endif
460
460
461
461
Original file line number Diff line number Diff line change @@ -77,7 +77,7 @@ extern void procsignal_sigusr1_handler(SIGNAL_ARGS);
77
77
typedef struct ProcSignalHeader ProcSignalHeader ;
78
78
79
79
#ifdef EXEC_BACKEND
80
- extern ProcSignalHeader * ProcSignal ;
80
+ extern PGDLLIMPORT ProcSignalHeader * ProcSignal ;
81
81
#endif
82
82
83
83
#endif /* PROCSIGNAL_H */
Original file line number Diff line number Diff line change @@ -312,11 +312,11 @@ extern PGDLLIMPORT bool optimize_bounded_sort;
312
312
* that would then require including the definition of struct
313
313
* config_enum_entry into those header files.)
314
314
*/
315
- extern const struct config_enum_entry archive_mode_options [];
316
- extern const struct config_enum_entry dynamic_shared_memory_options [];
317
- extern const struct config_enum_entry recovery_target_action_options [];
318
- extern const struct config_enum_entry wal_level_options [];
319
- extern const struct config_enum_entry wal_sync_method_options [];
315
+ extern PGDLLIMPORT const struct config_enum_entry archive_mode_options [];
316
+ extern PGDLLIMPORT const struct config_enum_entry dynamic_shared_memory_options [];
317
+ extern PGDLLIMPORT const struct config_enum_entry recovery_target_action_options [];
318
+ extern PGDLLIMPORT const struct config_enum_entry wal_level_options [];
319
+ extern PGDLLIMPORT const struct config_enum_entry wal_sync_method_options [];
320
320
321
321
/*
322
322
* Functions exported by guc.c
You can’t perform that action at this time.
0 commit comments