Julian Hall | e76ade8 | 2020-11-25 03:07:21 +0100 | [diff] [blame] | 1 | '------------------------------------------------------------------------------- |
| 2 | ' Copyright (c) 2020-2021, Arm Limited and Contributors. All rights reserved. |
| 3 | ' |
| 4 | ' SPDX-License-Identifier: BSD-3-Clause |
| 5 | ' |
| 6 | '------------------------------------------------------------------------------- |
| 7 | |
| 8 | @startuml |
| 9 | |
| 10 | class rpc_caller { |
| 11 | {abstract}int call(opcode, param_buf, result_buf) |
| 12 | } |
| 13 | |
| 14 | rpc_caller -> call_ep |
| 15 | note right on link |
| 16 | Association with call_ep is made when |
| 17 | RPC session is established. |
| 18 | end note |
| 19 | |
| 20 | @enduml |