toolchain: ifc: mpc: add support for sending/receiving handles

This commit is contained in:
2026-03-06 20:15:29 +00:00
parent 1c89acddbf
commit faeefe28ab
5 changed files with 318 additions and 86 deletions

View File

@@ -39,6 +39,10 @@ const struct type *ctx_get_type(struct ctx *ctx, const char *name)
return ctx_get_builtin_type(ctx, TYPE_INT);
}
if (!strcmp(name, "handle")) {
return ctx_get_builtin_type(ctx, TYPE_HANDLE);
}
return NULL;
}