[genode] Does order matter?
jaeyong yoo
y.jaeyong at ...9...
Mon Jan 21 02:33:39 CET 2013
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
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.genode.org/pipermail/users/attachments/20130121/13cc64f7/attachment.html>
More information about the users
mailing list