aboutsummaryrefslogtreecommitdiff
path: root/rwcancel/rwcancel_unix.go
diff options
context:
space:
mode:
authorJason A. Donenfeld <Jason@zx2c4.com>2018-05-14 03:55:46 +0200
committerJason A. Donenfeld <Jason@zx2c4.com>2018-05-14 04:02:59 +0200
commit5f5503afa8c8b9cf2bc2bbe5a3a588e68eae15ef (patch)
tree093840a4c6b733495e1562054c33df4971dc67f2 /rwcancel/rwcancel_unix.go
parentf738c45a68a34721af4ca2738be1f8389b372bfe (diff)
downloadwireguard-go-5f5503afa8c8b9cf2bc2bbe5a3a588e68eae15ef.tar.gz
wireguard-go-5f5503afa8c8b9cf2bc2bbe5a3a588e68eae15ef.zip
Add rwcancelation to darwin
Diffstat (limited to 'rwcancel/rwcancel_unix.go')
-rw-r--r--rwcancel/rwcancel_unix.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/rwcancel/rwcancel_unix.go b/rwcancel/rwcancel_unix.go
index cd3661f..7f2c9e0 100644
--- a/rwcancel/rwcancel_unix.go
+++ b/rwcancel/rwcancel_unix.go
@@ -77,7 +77,7 @@ func (rw *RWCancel) ReadyRead() bool {
fdset := fdSet{}
fdset.set(rw.fd)
fdset.set(closeFd)
- _, err := unix.Select(max(rw.fd, closeFd)+1, &fdset.fdset, nil, nil, nil)
+ err := unixSelect(max(rw.fd, closeFd)+1, &fdset.fdset, nil, nil, nil)
if err != nil {
return false
}
@@ -92,7 +92,7 @@ func (rw *RWCancel) ReadyWrite() bool {
fdset := fdSet{}
fdset.set(rw.fd)
fdset.set(closeFd)
- _, err := unix.Select(max(rw.fd, closeFd)+1, nil, &fdset.fdset, nil, nil)
+ err := unixSelect(max(rw.fd, closeFd)+1, nil, &fdset.fdset, nil, nil)
if err != nil {
return false
}