| /* | |
| * Copyright 2017, Data61, CSIRO (ABN 41 687 119 230) | |
| * | |
| * SPDX-License-Identifier: BSD-2-Clause | |
| */ | |
| import <std_connector.camkes>; | |
| procedure null { | |
| } | |
| component Server { | |
| provides null n; | |
| } | |
| component Client { | |
| control; | |
| uses null n; | |
| } | |
| assembly { | |
| composition { | |
| component Client c; | |
| component Server s; | |
| connection seL4RPCCall unused(from c.n, to s.n); | |
| } | |
| } |