Hello genode!
Just out of curiosity, I'm just wondering whether the order of defining RPC calls matter.
For instance,
GENODE_RPC(Rpc_func_a, void , func_a); GENODE_RPC(Rpc_func_b, void , func_b);
GENODE_RPC_INTERFACE( Rpc_func_a, Rpc_func_b);
vs.
GENODE_RPC(Rpc_func_a, void , func_a); GENODE_RPC(Rpc_func_b, void , func_b);
GENODE_RPC_INTERFACE( Rpc_func_b, Rpc_func_a); /* the order of func_a and func_b is reversed */
Do the above two RPC call definitions are equally OK?
Best regards, Jaeyong