blob: 63a75b200461003991a56d14f45141f0b872dd49 [file] [log] [blame]
// Copyright 2024 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
/// Library containing a simple calculator protocol.
library fuchsia.examples.colocated;
using zx;
/// A protocol for reporting one's own VMO usage.
///
/// This protocol is used for integration testing.
@discoverable
open protocol Colocated {
/// Returns a list of VMO Koids used by the component,
GetVmos() -> (struct {
vmos vector<zx.Koid>:MAX;
});
};