From 8d22ec661c9d3b23db8703c74e562bb2f633f1ab Mon Sep 17 00:00:00 2001 From: Max Wash Date: Tue, 24 Mar 2026 20:26:12 +0000 Subject: [PATCH] bootstrap: remove old request handler code --- sys/bootstrap/main.c | 25 ------------------------- 1 file changed, 25 deletions(-) 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;