From e7f3db0679e5d37970a06f428208c3f5b51db5d2 Mon Sep 17 00:00:00 2001 From: "Luke T. Shumaker" Date: Tue, 18 Mar 2025 10:53:12 -0600 Subject: wip --- lib9p/protogen/c9util.py | 2 ++ 1 file changed, 2 insertions(+) (limited to 'lib9p/protogen/c9util.py') diff --git a/lib9p/protogen/c9util.py b/lib9p/protogen/c9util.py index e7ad999..10d1c8c 100644 --- a/lib9p/protogen/c9util.py +++ b/lib9p/protogen/c9util.py @@ -76,6 +76,8 @@ def typename(typ: idl.Type, parent: idl.StructMember | None = None) -> str: match typ: case idl.Primitive(): if typ.value == 1 and parent and parent.cnt: # SPECIAL (string) + if parent.membname == "data": # SPECIAL (zerocopy) + return f"struct {ident('_iovec')}" return "[[gnu::nonstring]] char" return f"uint{typ.value*8}_t" case idl.Number(): -- cgit v1.2.3-2-g168b