blob: 1be56a1449ad1b4979f7f0987f6bf5fea150703b [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 zx;
@transport("Syscall")
protocol event {
/// Create an event.
event_create(struct {
options uint32;
}) -> (resource struct {
status status;
out handle:EVENT;
});
};