blob: 7486b2a3441878f1a88093b5e9dfef83f258a094 [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 protocol to report VMO usage by the colocated
/// component.
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;
});
};