postgresql/contrib/pg_upgrade
Andres Freund bbfd7edae5 Add macros wrapping all usage of gcc's __attribute__.
Until now __attribute__() was defined to be empty for all compilers but
gcc. That's problematic because it prevents using it in other compilers;
which is necessary e.g. for atomics portability.  It's also just
generally dubious to do so in a header as widely included as c.h.

Instead add pg_attribute_format_arg, pg_attribute_printf,
pg_attribute_noreturn macros which are implemented in the compilers that
understand them. Also add pg_attribute_noreturn and pg_attribute_packed,
but don't provide fallbacks, since they can affect functionality.

This means that external code that, possibly unwittingly, relied on
__attribute__ defined to be empty on !gcc compilers may now run into
warnings or errors on those compilers. But there shouldn't be many
occurances of that and it's hard to work around...

Discussion: 54B58BA3.8040302@ohmu.fi
Author: Oskari Saarenmaa, with some minor changes by me.
2015-03-11 14:30:01 +01:00
..
.gitignore Update .gitignore for pg_upgrade 2014-12-17 11:55:22 +01:00
IMPLEMENTATION Remove useless whitespace at end of lines 2010-11-23 22:34:55 +02:00
Makefile pg_upgrade: remove support for 8.3 old clusters 2014-08-25 20:05:07 -04:00
TESTING Rename 'gmake' to 'make' in docs and recommended commands 2014-02-12 17:29:19 -05:00
check.c pg_upgrade: quote directory names in delete_old_cluster script 2015-02-11 22:06:04 -05:00
controldata.c pg_upgrade: improve checksum mismatch error message 2015-02-11 22:22:26 -05:00
dump.c Update copyright for 2015 2015-01-06 11:43:47 -05:00
exec.c Update copyright for 2015 2015-01-06 11:43:47 -05:00
file.c Update copyright for 2015 2015-01-06 11:43:47 -05:00
function.c Update copyright for 2015 2015-01-06 11:43:47 -05:00
info.c Update copyright for 2015 2015-01-06 11:43:47 -05:00
option.c Update copyright for 2015 2015-01-06 11:43:47 -05:00
page.c Update copyright for 2015 2015-01-06 11:43:47 -05:00
parallel.c Update copyright for 2015 2015-01-06 11:43:47 -05:00
pg_upgrade.c Update copyright for 2015 2015-01-06 11:43:47 -05:00
pg_upgrade.h Add macros wrapping all usage of gcc's __attribute__. 2015-03-11 14:30:01 +01:00
relfilenode.c pg_upgrade: fix one-byte per empty db memory leak 2015-01-09 12:12:30 -05:00
server.c Update copyright for 2015 2015-01-06 11:43:47 -05:00
tablespace.c Update copyright for 2015 2015-01-06 11:43:47 -05:00
test.sh Update copyright for 2015 2015-01-06 11:43:47 -05:00
util.c Add macros wrapping all usage of gcc's __attribute__. 2015-03-11 14:30:01 +01:00
version.c Update copyright for 2015 2015-01-06 11:43:47 -05:00