You've already forked hexagonrpc
mirror of
https://github.com/linux-msm/hexagonrpc.git
synced 2026-02-25 13:13:52 -08:00
The current method definition format has a few issues. There is no way to represent `apps_std_mkdir(in string dir, in long long mode)` because it has a sequence before a fixed-length argument. The fixed-length arguments are passed in 4-byte units, making large fixed-length arrays awkward. Sequences of sequences cannot be represented. Add a new version of the remote method definition to support more methods, with sequences of sequences, mixed input and output arguments, and fixed-length data structures greater than 32 bits. Signed-off-by: Richard Acayan <mailingradian@gmail.com>