Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/share/man/man3 __dead functions can not return, which is dif...



details:   https://anonhg.NetBSD.org/src/rev/961dc866b35c
branches:  trunk
changeset: 835878:961dc866b35c
user:      joerg <joerg%NetBSD.org@localhost>
date:      Fri Sep 14 20:38:38 2018 +0000

description:
__dead functions can not return, which is different from not returning a
value.

diffstat:

 share/man/man3/attribute.3 |  7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diffs (23 lines):

diff -r 3e14585b4a67 -r 961dc866b35c share/man/man3/attribute.3
--- a/share/man/man3/attribute.3        Fri Sep 14 19:57:57 2018 +0000
+++ b/share/man/man3/attribute.3        Fri Sep 14 20:38:38 2018 +0000
@@ -1,4 +1,4 @@
-.\" $NetBSD: attribute.3,v 1.16 2014/04/21 15:52:27 riastradh Exp $
+.\" $NetBSD: attribute.3,v 1.17 2018/09/14 20:38:38 joerg Exp $
 .\"
 .\" Copyright (c) 2010 The NetBSD Foundation, Inc.
 .\" All rights reserved.
@@ -99,10 +99,11 @@
 .Xr abort 3
 and
 .Xr exit 3 ,
-can never return any value.
+can never return.
 When such a function is declared with
 .Ic __dead ,
-certain optimizations are possible.
+certain optimizations are possible and warnings sensitive to the code flow graph
+may be pruned.
 Obviously a
 .Ic __dead
 function can never have return type other than



Home | Main Index | Thread Index | Old Index