1
0
mirror of https://github.com/postgres/postgres.git synced 2025-04-22 23:02:54 +03:00

PGDLLIMPORT-ify MyBgworkerEntry.

This was done in HEAD in commit 7d7eee8bb702d7796a0d7c5886c1f4685f2e2806,
but 9.3 needs it too for contrib/worker_spi.  Per buildfarm member narwhal.
This commit is contained in:
Tom Lane 2014-02-17 11:29:34 -05:00
parent 1ec5988f31
commit 6fc2868e4f

View File

@ -82,7 +82,7 @@ typedef struct BackgroundWorker
extern void RegisterBackgroundWorker(BackgroundWorker *worker); extern void RegisterBackgroundWorker(BackgroundWorker *worker);
/* This is valid in a running worker */ /* This is valid in a running worker */
extern BackgroundWorker *MyBgworkerEntry; extern PGDLLIMPORT BackgroundWorker *MyBgworkerEntry;
/* /*
* Connect to the specified database, as the specified user. Only a worker * Connect to the specified database, as the specified user. Only a worker