Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 9 Jun 2006 22:01:46 GMT
From:      John Birrell <jb@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 98885 for review
Message-ID:  <200606092201.k59M1kRL030050@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=98885

Change 98885 by jb@jb_freebsd2 on 2006/06/09 22:00:47

	On FreeBSD, we can't really afford to abort() if there is something
	the CTF tools don't like.

Affected files ...

.. //depot/projects/dtrace/src/contrib/opensolaris/tools/ctf/cvt/util.c#5 edit

Differences ...

==== //depot/projects/dtrace/src/contrib/opensolaris/tools/ctf/cvt/util.c#5 (text) ====

@@ -150,7 +150,11 @@
 	whine("ERROR", format, ap);
 	va_end(ap);
 
+#if defined(sun)
 	abort();
+#else
+	exit(0);
+#endif
 }
 
 /*PRINTFLIKE1*/



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200606092201.k59M1kRL030050>