mirror of
https://github.com/postgres/postgres.git
synced 2025-10-27 00:12:01 +03:00
Apply PGDLLIMPORT markings broadly.
Up until now, we've had a policy of only marking certain variables in the PostgreSQL header files with PGDLLIMPORT, but now we've decided to mark them all. This means that extensions running on Windows should no longer operate at a disadvantage as compared to extensions running on Linux: if the variable is present in a header file, it should be accessible. Discussion: http://postgr.es/m/CA+TgmoYanc1_FSfimhgiWSqVyP5KKmh5NP2BWNwDhO8Pg2vGYQ@mail.gmail.com
This commit is contained in:
@@ -34,14 +34,14 @@ typedef struct PROC_QUEUE
|
||||
} PROC_QUEUE;
|
||||
|
||||
/* GUC variables */
|
||||
extern int max_locks_per_xact;
|
||||
extern PGDLLIMPORT int max_locks_per_xact;
|
||||
|
||||
#ifdef LOCK_DEBUG
|
||||
extern int Trace_lock_oidmin;
|
||||
extern bool Trace_locks;
|
||||
extern bool Trace_userlocks;
|
||||
extern int Trace_lock_table;
|
||||
extern bool Debug_deadlocks;
|
||||
extern PGDLLIMPORT int Trace_lock_oidmin;
|
||||
extern PGDLLIMPORT bool Trace_locks;
|
||||
extern PGDLLIMPORT bool Trace_userlocks;
|
||||
extern PGDLLIMPORT int Trace_lock_table;
|
||||
extern PGDLLIMPORT bool Debug_deadlocks;
|
||||
#endif /* LOCK_DEBUG */
|
||||
|
||||
|
||||
@@ -154,7 +154,7 @@ typedef enum LockTagType
|
||||
|
||||
#define LOCKTAG_LAST_TYPE LOCKTAG_ADVISORY
|
||||
|
||||
extern const char *const LockTagTypeNames[];
|
||||
extern PGDLLIMPORT const char *const LockTagTypeNames[];
|
||||
|
||||
/*
|
||||
* The LOCKTAG struct is defined with malice aforethought to fit into 16
|
||||
|
||||
Reference in New Issue
Block a user