Download presentation
Presentation is loading. Please wait.
Published byTabitha Shelton Modified over 9 years ago
10
(a) Parameter passing in a local procedure call: the stack before the call (b) The stack while the called procedure is active. count = read(fd, buf, nbytes)
14
Principle of RPC between a client and server program.
20
Each machine often has its own representation for numbers, characters, and other data items. Some machines, such as the Intel Pentium, number their bytes from right to left, whereas others, such as the Sun SPARC, number them the other way. The Intel format is called little endian and the SPARC format is called big endian,
21
a)Original message on the Pentium (little-endian) b)The message after receipt on the SPARC (big-endian) c)The message after being inverted (integer 5, string: “LLIJ”) Note: the little numbers in boxes indicate the address of each byte
24
Analogous to spawning a thread Caller must eventually wait for result Analogous to join The interconnection between client and server in a traditional RPC
25
Analogous to spawning a thread Caller must eventually wait for result Analogous to join Or be interrupted (software interrupt)
28
The steps in writing a client and a server in DCE RPC DCE: Distributed Computing Environment
Similar presentations
© 2024 SlidePlayer.com. Inc.
All rights reserved.