postgresql/contrib/test_shm_mq
Peter Eisentraut e7128e8dbb Create function prototype as part of PG_FUNCTION_INFO_V1 macro
Because of gcc -Wmissing-prototypes, all functions in dynamically
loadable modules must have a separate prototype declaration.  This is
meant to detect global functions that are not declared in header files,
but in cases where the function is called via dfmgr, this is redundant.
Besides filling up space with boilerplate, this is a frequent source of
compiler warnings in extension modules.

We can fix that by creating the function prototype as part of the
PG_FUNCTION_INFO_V1 macro, which such modules have to use anyway.  That
makes the code of modules cleaner, because there is one less place where
the entry points have to be listed, and creates an additional check that
functions have the right prototype.

Remove now redundant prototypes from contrib and other modules.
2014-04-18 00:03:19 -04:00
..
expected test_shm_mq: Improve regression tests. 2014-03-20 08:48:22 -04:00
sql test_shm_mq: Improve regression tests. 2014-03-20 08:48:22 -04:00
.gitignore Test code for shared memory message queue facility. 2014-01-14 12:24:12 -05:00
Makefile Test code for shared memory message queue facility. 2014-01-14 12:24:12 -05:00
setup.c Fix some remaining int64 vestiges in contrib/test_shm_mq. 2014-03-18 14:26:44 -04:00
test.c Create function prototype as part of PG_FUNCTION_INFO_V1 macro 2014-04-18 00:03:19 -04:00
test_shm_mq--1.0.sql Test code for shared memory message queue facility. 2014-01-14 12:24:12 -05:00
test_shm_mq.control Test code for shared memory message queue facility. 2014-01-14 12:24:12 -05:00
test_shm_mq.h test_shm_mq: Fix checks for negative queue size. 2014-01-15 10:51:06 -05:00
worker.c test_shm_mq: Use Size rather than uint64. 2014-03-18 13:30:19 -04:00