blob: 310c894545fc3f0f20091bc5eba0b0b8dae2c3ec [file] [log] [blame]
// Copyright 2019 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 fuchsia.security.resource;
/// Protocol for providing a `ZX_RSRC_KIND_VMEX` to programs that should be
/// able to mark VMOs as executable.
[Discoverable, Layout = "Simple"]
protocol Vmex {
/// Get a VMEX resource handle as `resource`.
Get() -> (handle<resource> vmex);
};