blob: 0f138a3b4ac5494b1b32a0978871ba0c8a2b2dd2 [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.scheduler;
using zx;
[Discoverable, Layout = "Simple"]
protocol ProfileProvider {
// Obtain a profile handle.
GetProfile(uint32 priority, string:64 name) -> (zx.status status, handle<profile>? profile);
};