diff options
author | Andrew Dunstan <andrew@dunslane.net> | 2014-01-17 12:48:23 -0500 |
---|---|---|
committer | Andrew Dunstan <andrew@dunslane.net> | 2014-01-17 12:48:23 -0500 |
commit | 708c529c7fdeba9387825d746752fc6f439d781e (patch) | |
tree | 79bcf5f11d25c089997e2fc8e4d6ffbdc837804e | |
parent | b64d956d583a64c9638bdcdc9cd2969a529dbcdc (diff) | |
download | postgresql-708c529c7fdeba9387825d746752fc6f439d781e.tar.gz postgresql-708c529c7fdeba9387825d746752fc6f439d781e.zip |
Export set_latch_on_sigusr1 symbol for Windows.
Per buildfarm currawong and grip from David Rowley.
-rw-r--r-- | src/include/storage/procsignal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/storage/procsignal.h b/src/include/storage/procsignal.h index d571958bda5..c6255620f3d 100644 --- a/src/include/storage/procsignal.h +++ b/src/include/storage/procsignal.h @@ -54,6 +54,6 @@ extern int SendProcSignal(pid_t pid, ProcSignalReason reason, BackendId backendId); extern void procsignal_sigusr1_handler(SIGNAL_ARGS); -extern bool set_latch_on_sigusr1; +extern PGDLLIMPORT bool set_latch_on_sigusr1; #endif /* PROCSIGNAL_H */ |