diff options
-rw-r--r-- | src/include/pgstat.h | 6 | ||||
-rw-r--r-- | src/include/storage/proc.h | 6 |
2 files changed, 6 insertions, 6 deletions
diff --git a/src/include/pgstat.h b/src/include/pgstat.h index 36b530bc27f..aecb6013f00 100644 --- a/src/include/pgstat.h +++ b/src/include/pgstat.h @@ -1210,9 +1210,9 @@ typedef struct PgStat_FunctionCallUsage * GUC parameters * ---------- */ -extern bool pgstat_track_activities; -extern bool pgstat_track_counts; -extern int pgstat_track_functions; +extern PGDLLIMPORT bool pgstat_track_activities; +extern PGDLLIMPORT bool pgstat_track_counts; +extern PGDLLIMPORT int pgstat_track_functions; extern PGDLLIMPORT int pgstat_track_activity_query_size; extern char *pgstat_stat_directory; extern char *pgstat_stat_tmpname; diff --git a/src/include/storage/proc.h b/src/include/storage/proc.h index 5b407e6ac56..d21780108bb 100644 --- a/src/include/storage/proc.h +++ b/src/include/storage/proc.h @@ -293,9 +293,9 @@ extern PGPROC *PreparedXactProcs; /* configurable options */ extern PGDLLIMPORT int DeadlockTimeout; -extern int StatementTimeout; -extern int LockTimeout; -extern int IdleInTransactionSessionTimeout; +extern PGDLLIMPORT int StatementTimeout; +extern PGDLLIMPORT int LockTimeout; +extern PGDLLIMPORT int IdleInTransactionSessionTimeout; extern bool log_lock_waits; |