summaryrefslogtreecommitdiff
path: root/src/internal/syscall/unix/nonblocking_js.go
blob: cfe78c58d8de2c2bac2f173e98a6908aac051b95 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright 2018 The Go Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.

//go:build js && wasm

package unix

func IsNonblock(fd int) (nonblocking bool, err error) {
	return false, nil
}

func HasNonblockFlag(flag int) bool {
	return false
}