Search | Google it | Results 1 - 1 of 1 for fundef:KASSERT from t2ex/bsd_source/t2ex/network/net/src_bsd/lib/libkern/libkern.h (0.00 seconds) |
202: #define KASSERTMSG(e, msg) /* NOTHING */ 203: #define KASSERT(e) /* NOTHING */ 204: #else /* !lint */ 205: #define KASSERTMSG(e, msg) ((void)0) 206: #define KASSERT(e) ((void)0) 207: #endif /* !lint */ 214: #ifdef __STDC__ 215: #define KASSERT(e) (__predict_true((e)) ? (void)0 : \ 216: __kernassert("diagnostic ", __FILE__, __LINE__, #e)) 217: #else 218: #define KASSERT(e) (__predict_true((e)) ? (void)0 : \ 219: __kernassert("diagnostic ", __FILE__, __LINE__,"e"))