| /* | |
| * Copyright 2017, Data61, CSIRO (ABN 41 687 119 230) | |
| * | |
| * SPDX-License-Identifier: BSD-2-Clause | |
| */ | |
| import <std_connector.camkes>; | |
| procedure Iface { | |
| void f(); | |
| }; | |
| component Client { | |
| control; | |
| uses Iface a; | |
| } | |
| component Server { | |
| provides Iface b; | |
| } | |
| assembly { | |
| composition { | |
| component Server server; | |
| component Client client; | |
| connection seL4RPCCall conn(from client.a, to server.b); | |
| } | |
| } |