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
------------------------------------------------------------------------------
Master Visual Studio, SharePoint, SQL, ASP.NET, C# 2012, HTML5, CSS,
MVC, Windows 8 Apps, JavaScript and much more. Keep your skills current
with LearnDevNow - 3,200 step-by-step video tutorials by Microsoft
MVPs and experts. SALE $99.99 this month only -- learn more at:
http://p.sf.net/sfu/learnmore_122412
_______________________________________________
Genode-main mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/genode-main

Reply via email to