diff options
author | Peter Eisentraut | 2012-06-25 18:25:26 +0000 |
---|---|---|
committer | Peter Eisentraut | 2012-06-25 18:30:12 +0000 |
commit | eeece9e60984e76e5a41c1e2fa9efc5a1761e560 (patch) | |
tree | f1dfac89e34d678629b3f56ace2bb215b33f4a94 /src/include/pgstat.h | |
parent | c7d47abd04dc1322fd545370cfeb743680df0e3a (diff) |
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.
Diffstat (limited to 'src/include/pgstat.h')
-rw-r--r-- | src/include/pgstat.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/pgstat.h b/src/include/pgstat.h index cad9b54e7b5..613c1c2ad8a 100644 --- a/src/include/pgstat.h +++ b/src/include/pgstat.h @@ -749,7 +749,7 @@ extern void pgstat_reset_all(void); extern void allow_immediate_pgstat_restart(void); #ifdef EXEC_BACKEND -extern void PgstatCollectorMain(int argc, char *argv[]); +extern void PgstatCollectorMain(int argc, char *argv[]) __attribute__((noreturn)); #endif |