blob: 5496fc3e85749604e2d4e0f8bcd5ad06f6649a2d [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.
// !!! THIS FILE IS NOT YET USED !!!
// See //zircon/system/public/zircon/syscalls.banjo.
// !!! THIS FILE IS NOT YET USED !!!
library zz;
[Transport="Syscall"]
protocol Eventpair {
/// Create an event pair.
[Out1="handle<event>:acquire",
Out2="handle<event>:acquire"]
Create(uint32 options) -> (status status, handle<event> out0, handle<event> out1);
};