March 1993
Intermediate to advanced
800 pages
27h 59m
English
System V Release 4 includes a remote procedure call (RPC) interface derived from the one created and made popular by Sun Microsystems. Remote procedure calls are useful because they allow programmers to develop applications that ignore the details of communication but still make use of communication facilities. This chapter describes the RPC components and how programmers can use them to develop network-independent applications.
Ordinary (local) procedure calls transfer the control flow of a program from one procedure to another within the same process on a single machine. Consider the following code fragment:
main(){ struct inargs inargs; struct outargs outargs; ...
Read now
Unlock full access