Reputation: 71
What are the differences between RPC (Remote Prpcedure Calls) and LPC (Local Procedure Calls)?
Upvotes: 3
Views: 23750
Reputation: 1095
Read their respective Wikipedia pages:
RPC - https://en.wikipedia.org/wiki/Remote_procedure_call
LPC - https://en.wikipedia.org/wiki/Local_Procedure_Call
Everything is explained there. First put some effort into it and if you get stuck you can still pose a non-trivial questions.
Differences:
Upvotes: 14
Reputation: 47
In RPC, programs can be executed from a different computer while in LPC, programs are executed by the host computer.
Upvotes: 2