From 5f5503afa8c8b9cf2bc2bbe5a3a588e68eae15ef Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Mon, 14 May 2018 03:55:46 +0200 Subject: Add rwcancelation to darwin --- rwcancel/select_darwin.go | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 rwcancel/select_darwin.go (limited to 'rwcancel/select_darwin.go') diff --git a/rwcancel/select_darwin.go b/rwcancel/select_darwin.go new file mode 100644 index 0000000..d14edc8 --- /dev/null +++ b/rwcancel/select_darwin.go @@ -0,0 +1,12 @@ +/* SPDX-License-Identifier: GPL-2.0 + * + * Copyright (C) 2017-2018 Jason A. Donenfeld . All Rights Reserved. + */ + +package rwcancel + +import "golang.org/x/sys/unix" + +func unixSelect(nfd int, r *unix.FdSet, w *unix.FdSet, e *unix.FdSet, timeout *unix.Timeval) error { + return unix.Select(nfd, r, w, e, timeout) +} -- cgit v1.2.3