Unify calling conventions for postgres/postmaster sub-main functions
authorPeter Eisentraut <peter_e@gmx.net>
Mon, 25 Jun 2012 18:25:26 +0000 (21:25 +0300)
committerPeter Eisentraut <peter_e@gmx.net>
Mon, 25 Jun 2012 18:30:12 +0000 (21:30 +0300)
commiteeece9e60984e76e5a41c1e2fa9efc5a1761e560
treef1dfac89e34d678629b3f56ace2bb215b33f4a94
parentc7d47abd04dc1322fd545370cfeb743680df0e3a
Unify calling conventions for postgres/postmaster sub-main functions

There was a wild mix of calling conventions: Some were declared to
return void and didn't return, some returned an int exit code, some
claimed to return an exit code, which the callers checked, but
actually never returned, and so on.

Now all of these functions are declared to return void and decorated
with attribute noreturn and don't return.  That's easiest, and most
code already worked that way.
23 files changed:
src/backend/main/main.c
src/backend/postmaster/autovacuum.c
src/backend/postmaster/pgarch.c
src/backend/postmaster/pgstat.c
src/backend/postmaster/postmaster.c
src/backend/postmaster/syslogger.c
src/backend/replication/walsender.c
src/backend/tcop/postgres.c
src/backend/utils/misc/help_config.c
src/include/bootstrap/bootstrap.h
src/include/pgstat.h
src/include/postmaster/autovacuum.h
src/include/postmaster/bgwriter.h
src/include/postmaster/pgarch.h
src/include/postmaster/postmaster.h
src/include/postmaster/startup.h
src/include/postmaster/syslogger.h
src/include/postmaster/walwriter.h
src/include/replication/walreceiver.h
src/include/replication/walsender.h
src/include/storage/ipc.h
src/include/tcop/tcopprot.h
src/include/utils/help_config.h