blob: 417b91a0ac3eaf8f74b6798d7e5d65433fc7b563 [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.kernel;
using zx;
/// Protocol for providing the root job.
///
/// TODO(fxbug.dev/33856): Do not use this without first consulting the Zircon team.
[Discoverable, ForDeprecatedCBindings]
protocol RootJob {
/// Get the root `job`.
Get() -> (zx.handle:JOB job);
};
/// Protocol for providing the root job with restricted rights, specifically:
/// INSPECT | ENUMERATE | DUPLICATE | TRANSFER
[Discoverable, ForDeprecatedCBindings]
protocol RootJobForInspect {
compose RootJob;
};