diff options
author | Andres Freund <andres@anarazel.de> | 2022-07-17 18:50:14 -0700 |
---|---|---|
committer | Andres Freund <andres@anarazel.de> | 2022-07-17 18:50:14 -0700 |
commit | 8cf64d35eaccab967c51d8bccf2c1babe3f84715 (patch) | |
tree | 03c5460d43f972d67d1ed1b59d061465a04e48cd /src/test/modules | |
parent | 5050fe5458d16387728c0dd13eee9517fe4bce13 (diff) | |
download | postgresql-8cf64d35eaccab967c51d8bccf2c1babe3f84715.tar.gz postgresql-8cf64d35eaccab967c51d8bccf2c1babe3f84715.zip |
Mark all symbols exported from extension libraries PGDLLEXPORT.
This is in preparation for defaulting to -fvisibility=hidden in extensions,
instead of relying on all symbols in extensions to be exported.
This should have been committed before 089480c0770, but something in my commit
scripts went wrong.
Author: Andres Freund <andres@anarazel.de>
Reviewed-By: Tom Lane <tgl@sss.pgh.pa.us>
Discussion: https://postgr.es/m/20211101020311.av6hphdl6xbjbuif@alap3.anarazel.de
Diffstat (limited to 'src/test/modules')
-rw-r--r-- | src/test/modules/test_shm_mq/test_shm_mq.h | 2 | ||||
-rw-r--r-- | src/test/modules/worker_spi/worker_spi.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/test/modules/test_shm_mq/test_shm_mq.h b/src/test/modules/test_shm_mq/test_shm_mq.h index 0310caf50bd..8f97be78d3e 100644 --- a/src/test/modules/test_shm_mq/test_shm_mq.h +++ b/src/test/modules/test_shm_mq/test_shm_mq.h @@ -40,6 +40,6 @@ extern void test_shm_mq_setup(int64 queue_size, int32 nworkers, shm_mq_handle **input); /* Main entrypoint for a worker. */ -extern void test_shm_mq_main(Datum) pg_attribute_noreturn(); +extern PGDLLEXPORT void test_shm_mq_main(Datum) pg_attribute_noreturn(); #endif diff --git a/src/test/modules/worker_spi/worker_spi.c b/src/test/modules/worker_spi/worker_spi.c index b37ef8beb60..d63a7631ad2 100644 --- a/src/test/modules/worker_spi/worker_spi.c +++ b/src/test/modules/worker_spi/worker_spi.c @@ -46,7 +46,7 @@ PG_MODULE_MAGIC; PG_FUNCTION_INFO_V1(worker_spi_launch); -void worker_spi_main(Datum) pg_attribute_noreturn(); +PGDLLEXPORT void worker_spi_main(Datum) pg_attribute_noreturn(); /* GUC variables */ static int worker_spi_naptime = 10; |