Module Name:    src
Committed By:   roy
Date:           Thu Feb  4 17:47:43 UTC 2016

Modified Files:
        src/external/cddl/osnet/dist/tools/ctf/common: memory.c
        src/external/cddl/osnet/dist/tools/ctf/cvt: ctfmerge.c

Log Message:
Mark more functions as __dead.


To generate a diff of this commit:
cvs rdiff -u -r1.2 -r1.3 \
    src/external/cddl/osnet/dist/tools/ctf/common/memory.c
cvs rdiff -u -r1.13 -r1.14 \
    src/external/cddl/osnet/dist/tools/ctf/cvt/ctfmerge.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/external/cddl/osnet/dist/tools/ctf/common/memory.c
diff -u src/external/cddl/osnet/dist/tools/ctf/common/memory.c:1.2 src/external/cddl/osnet/dist/tools/ctf/common/memory.c:1.3
--- src/external/cddl/osnet/dist/tools/ctf/common/memory.c:1.2	Sun Feb 21 00:49:55 2010
+++ src/external/cddl/osnet/dist/tools/ctf/common/memory.c	Thu Feb  4 17:47:43 2016
@@ -37,7 +37,7 @@
 #include <strings.h>
 #include "memory.h"
 
-static void
+static void __dead
 memory_bailout(void)
 {
 	(void) fprintf(stderr, "Out of memory\n");

Index: src/external/cddl/osnet/dist/tools/ctf/cvt/ctfmerge.c
diff -u src/external/cddl/osnet/dist/tools/ctf/cvt/ctfmerge.c:1.13 src/external/cddl/osnet/dist/tools/ctf/cvt/ctfmerge.c:1.14
--- src/external/cddl/osnet/dist/tools/ctf/cvt/ctfmerge.c:1.13	Thu Sep 24 19:16:06 2015
+++ src/external/cddl/osnet/dist/tools/ctf/cvt/ctfmerge.c	Thu Feb  4 17:47:43 2016
@@ -607,7 +607,7 @@ merge_ctf_cb(tdata_t *td, char *name, vo
  * completion.  The run time of ctfmerge can, however, be measured in minutes
  * in some cases, so this is not a valid option.
  */
-static void
+static void __dead
 handle_sig(int sig)
 {
 	terminate("Caught signal %d - exiting\n", sig);

Reply via email to