-#if !defined(NDEBUG)
- const int id = in->msgh_id;
- const int ucspBase = ucspNames[0].ipc;
- const int selfBase = selfNames[0].ipc;
- const char *name =
- (id >= ucspBase && id < ucspBase + ucsp_MSG_COUNT) ? ucspNames[id - ucspBase].name :
- (id >= selfBase && id < selfBase + self_MSG_COUNT) ? selfNames[id - selfBase].name :
- "OUT OF BOUNDS";
- secdebug("SSreq", "begin %s (%d)", name, in->msgh_id);
-#endif //NDEBUG
-
- boolean_t result = ucsp_server(in, out) || self_server(in, out);
- IFDEBUG(secdebug("SSreq", "end %s (%d)", name, in->msgh_id));
-
- return result;