summaryrefslogtreecommitdiff
path: root/src/include/tcop
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2013-02-12 07:13:22 -0500
committerPeter Eisentraut <peter_e@gmx.net>2013-02-12 07:13:22 -0500
commit0cb1fac3b19f01025b63d2cdceabb8767185da28 (patch)
tree05cddf0e4d15240b6a2e230d29f0edde4b538419 /src/include/tcop
parent62401db45c4feff9be296fa78a8bb7b9947d69de (diff)
downloadpostgresql-0cb1fac3b19f01025b63d2cdceabb8767185da28.tar.gz
Add noreturn attributes to some error reporting functions
Diffstat (limited to 'src/include/tcop')
-rw-r--r--src/include/tcop/tcopprot.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/tcop/tcopprot.h b/src/include/tcop/tcopprot.h
index 726fb74af2..e6f0afbedf 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);