svn commit: r272701 - head/sys/cddl/compat/opensolaris/sys

Andriy Gapon avg at FreeBSD.org
Tue Oct 7 14:15:51 UTC 2014


Author: avg
Date: Tue Oct  7 14:15:50 2014
New Revision: 272701
URL: https://svnweb.freebsd.org/changeset/base/272701

Log:
  make userland __assfail from opensolaris compat honor 'aok' variable
  
  This should allow zdb -A option to actually make difference.
  
  MFC after:	2 weeks

Modified:
  head/sys/cddl/compat/opensolaris/sys/assfail.h

Modified: head/sys/cddl/compat/opensolaris/sys/assfail.h
==============================================================================
--- head/sys/cddl/compat/opensolaris/sys/assfail.h	Tue Oct  7 14:09:05 2014	(r272700)
+++ head/sys/cddl/compat/opensolaris/sys/assfail.h	Tue Oct  7 14:15:50 2014	(r272701)
@@ -46,20 +46,24 @@ void assfail3(const char *, uintmax_t, c
 #else	/* !defined(_KERNEL) */
 
 #ifndef HAVE_ASSFAIL
+extern int aok;
+
 static __inline int
 __assfail(const char *expr, const char *file, int line)
 {
 
 	(void)fprintf(stderr, "Assertion failed: (%s), file %s, line %d.\n",
 	    expr, file, line);
-	abort();
-	/* NOTREACHED */
+	if (!aok)
+		abort();
 	return (0);
 }
 #define assfail __assfail
 #endif
 
 #ifndef HAVE_ASSFAIL3
+extern int aok;
+
 static __inline void
 __assfail3(const char *expr, uintmax_t lv, const char *op, uintmax_t rv,
     const char *file, int line) {
@@ -67,8 +71,8 @@ __assfail3(const char *expr, uintmax_t l
 	(void)fprintf(stderr,
 	    "Assertion failed: %s (0x%jx %s 0x%jx), file %s, line %d.\n",
 	    expr, lv, op, rv, file, line);
-        abort();
-        /* NOTREACHED */
+	if (!aok)
+		abort();
 }
 #define assfail3 __assfail3
 #endif


More information about the svn-src-all mailing list