blob: 44c59bc247100d167f3527627911cacdec1928ee [file] [log] [blame]
// Copyright 2024 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.fdomain;
// FDomain operations on Events.
@no_resource
open protocol Event {
// Create a new event in this FDomain and return it.
flexible CreateEvent(struct {
handle NewHandleId;
}) -> () error Error;
};