diff options
author | Peter Eisentraut | 2013-02-12 12:13:22 +0000 |
---|---|---|
committer | Peter Eisentraut | 2013-02-12 12:13:22 +0000 |
commit | 0cb1fac3b19f01025b63d2cdceabb8767185da28 (patch) | |
tree | 05cddf0e4d15240b6a2e230d29f0edde4b538419 /src/include/tcop/tcopprot.h | |
parent | 62401db45c4feff9be296fa78a8bb7b9947d69de (diff) |
Add noreturn attributes to some error reporting functions
Diffstat (limited to 'src/include/tcop/tcopprot.h')
-rw-r--r-- | src/include/tcop/tcopprot.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/tcop/tcopprot.h b/src/include/tcop/tcopprot.h index 726fb74af23..e6f0afbedfe 100644 --- a/src/include/tcop/tcopprot.h +++ b/src/include/tcop/tcopprot.h @@ -64,7 +64,7 @@ extern void assign_max_stack_depth(int newval, void *extra); extern void die(SIGNAL_ARGS); extern void quickdie(SIGNAL_ARGS) __attribute__((noreturn)); extern void StatementCancelHandler(SIGNAL_ARGS); -extern void FloatExceptionHandler(SIGNAL_ARGS); +extern void FloatExceptionHandler(SIGNAL_ARGS) __attribute__((noreturn)); extern void RecoveryConflictInterrupt(ProcSignalReason reason); /* called from SIGUSR1 * handler */ extern void prepare_for_client_read(void); |