194742Sobrien/*
294742Sobrien * Copyright (c) 2010, ETH Zurich.
394742Sobrien * All rights reserved.
494742Sobrien *
594742Sobrien * This file is distributed under the terms in the attached LICENSE file.
694772Simp * If you do not find this file, copies can be found by writing to:
794772Simp * ETH Zurich D-INFK, Universitaetstrasse 6, CH-8092 Zurich. Attn: Systems Group.
894772Simp */
994844Srwatson
1094772Simpinterface test_rpc_cap "RPC Cap Test interface" {
1194742Sobrien        rpc echo(in uint32 arg_in, out uint32 arg_out);
1294778Simp        rpc send_cap_one(in cap incap, out errval error_code);
1394778Simp        rpc send_cap_two(in cap incap1, in cap incap2, out errval error_code);
1494778Simp};
1594845Smarkm