make userland __assfail from opensolaris compat honor 'aok' variable

This should allow zdb -A option to actually make difference.

MFC after:	2 weeks
This commit is contained in:
Andriy Gapon 2014-10-07 14:15:50 +00:00
parent 9ef268219a
commit ab26525af2

View File

@ -46,20 +46,24 @@ void assfail3(const char *, uintmax_t, const char *, uintmax_t, const char *,
#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 lv, const char *op, uintmax_t rv,
(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