// Copyright 2025 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. | |
@available(added=HEAD) | |
library fuchsia.power.cpu.manager; | |
type SetBoostError = strict enum : uint32 { | |
NOT_SUPPORTED = 0; | |
INTERNAL = 1; | |
}; | |
@discoverable | |
protocol Boost { | |
SetBoost(struct { | |
enable bool; | |
}) -> () error SetBoostError; | |
}; |