blob: 45571218d7ba9ccfb364be3b83d60b2a9ea64ac3 [file] [log] [blame]
// Copyright 2016 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.
#include <mx/eventpair.h>
#include <magenta/syscalls.h>
namespace mx {
mx_status_t eventpair::create(uint32_t flags, eventpair* endpoint0,
eventpair* endpoint1) {
mx_handle_t h0 = MX_HANDLE_INVALID;
mx_handle_t h1 = MX_HANDLE_INVALID;
mx_status_t result = mx_eventpair_create(flags, &h0, &h1);
endpoint0->reset(h0);
endpoint1->reset(h1);
return result;
}
} // namespace mx