/*
* ceph_abort aborts the program with a nice backtrace.
*
- * Currently, it's the same as ceph_abort(), but we may one day make assert a
+ * Currently, it's the same as assert(0), but we may one day make assert a
* debug-only thing, like it is in many projects.
*/
#define ceph_abort() abort()
*
* @param m The Message we are fast dispatching. We take ownership
* of one reference to it.
+ * If none of our Dispatchers can handle it, ceph_abort().
*/
void ms_fast_dispatch(Message *m) {
m->set_dispatch_stamp(ceph_clock_now());
/**
* Deliver a single Message. Send it to each Dispatcher
* in sequence until one of them handles it.
- * If none of our Dispatchers can handle it, ceph_abort().
+ * If none of our Dispatchers can handle it, assert(0).
*
* @param m The Message to deliver. We take ownership of
* one reference to it.