diff --git a/sys/bootstrap/main.c b/sys/bootstrap/main.c index 2b0553f..a84a1ef 100644 --- a/sys/bootstrap/main.c +++ b/sys/bootstrap/main.c @@ -203,31 +203,6 @@ int main( while (1) { fs_context_handle_request(fs); -#if 0 - xpc_msg_t msg; - kern_status_t status = xpc_msg_recv(channel, &msg); - if (status != KERN_OK) { - kern_logf("message recv error %d", status); - continue; - } - - switch (msg.msg_header.hdr_interface) { - case INTERFACE_FS: - status = fs_context_dispatch_msg(fs, &msg); - break; - default: - kern_logf( - "unknown message protocol %u", - msg.msg_header.hdr_interface); - xpc_msg_reply_error(&msg, KERN_UNSUPPORTED); - break; - } - - if (status != KERN_OK) { - kern_logf("message reply error %d", status); - continue; - } -#endif } return 0;