blob: c5cd0f3e69a513087ed8c2f133dfa1fd6eea1b8b [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.boot;
using zx;
/// Protocol for providing the kernel log, readable.
@discoverable
@for_deprecated_c_bindings
protocol ReadOnlyLog {
/// Get read-only handle to the kernel `log`.
Get() -> (resource struct {
log zx.handle:LOG;
});
};
/// Protocol for providing the kernel log, writable.
@discoverable
@for_deprecated_c_bindings
protocol WriteOnlyLog {
/// Get write-only handle to the kernel `log`.
Get() -> (resource struct {
log zx.handle:LOG;
});
};