blob: 3e8a8b8a6d4ac8274a364e9e8f74120d344e9adf [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;
using zx;
/// Protocol for providing a `ZX_RSRC_KIND_VMEX` to programs that should be
/// able to mark VMOs as executable.
[Discoverable, ForDeprecatedCBindings]
protocol Vmex {
/// Get a VMEX resource handle as `resource`.
Get() -> (zx.handle:RESOURCE vmex);
};