File: dup_fd_windows.go

package info (click to toggle)
golang-github-cloudflare-tableflip 1.2.1~git20200514.4baec98-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 196 kB
  • sloc: makefile: 2
file content (7 lines) | stat: -rw-r--r-- 194 bytes parent folder | download | duplicates (2)
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")
}