lib: add libxpc to implement functionality needed by xpc interfaces

This commit is contained in:
2026-03-10 19:14:37 +00:00
parent b0fda122e0
commit aef0163017
10 changed files with 516 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
#ifndef XPC_ENDPOINT_H_
#define XPC_ENDPOINT_H_
#include <mango/types.h>
typedef struct xpc_endpoint {
kern_handle_t e_channel;
tid_t e_task;
koid_t e_port;
msgid_t e_msg;
} xpc_endpoint_t;
#endif