PERFORCE change 98885 for review
John Birrell
jb at FreeBSD.org
Fri Jun 9 22:03:51 UTC 2006
http://perforce.freebsd.org/chv.cgi?CH=98885
Change 98885 by jb at 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*/
More information about the p4-projects
mailing list