Codebase list golang-github-cloudflare-tableflip / 353af6b7-bcad-4100-9533-384831b35e2a/main dup_fd_windows.go
353af6b7-bcad-4100-9533-384831b35e2a/main

Tree @353af6b7-bcad-4100-9533-384831b35e2a/main (Download .tar.gz)

dup_fd_windows.go @353af6b7-bcad-4100-9533-384831b35e2a/mainraw · history · blame

1
2
3
4
5
6
7
package tableflip

import "errors"

func dupFd(fd uintptr, name fileName) (*file, error) {
	return nil, errors.New("tableflip: duplicating file descriptors is not supported on this platform")
}