buildkit/vendor/github.com/Microsoft/go-winio
Sebastiaan van Stijn 17e495e01a
vendor: update containerd and dependencies to current master
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
2020-05-14 21:01:44 +02:00
..
pkg/guid vendor: update containerd to v1.3.0-beta.2 2019-08-21 20:22:55 -07:00
vhd vendor: update containerd and dependencies to current master 2020-05-14 21:01:44 +02:00
.gitignore Migrate from vndr to go mod 2019-01-31 22:44:47 +00:00
LICENSE control: dependencies for pulling with containerd 2017-05-26 15:15:20 -07:00
README.md control: dependencies for pulling with containerd 2017-05-26 15:15:20 -07:00
backup.go vendor: update containerd to 1.0.1-rc0 2018-01-11 17:49:09 -08:00
ea.go Revendoring to move boltdb to bbolt 2018-09-18 11:18:08 -07:00
file.go vendor: update containerd to 1.3.0-beta.0 2019-08-20 17:00:47 -07:00
fileinfo.go Update containerd vendor 2018-08-28 14:26:14 -07:00
go.mod vendor: update containerd (and various packages) 2020-02-28 10:24:10 +09:00
go.sum vendor: update containerd (and various packages) 2020-02-28 10:24:10 +09:00
hvsock.go vendor: update containerd to 1.3.0-beta.0 2019-08-20 17:00:47 -07:00
pipe.go vendor: update containerd and continuity 2019-04-25 23:33:52 -07:00
privilege.go control: dependencies for pulling with containerd 2017-05-26 15:15:20 -07:00
reparse.go control: dependencies for pulling with containerd 2017-05-26 15:15:20 -07:00
sd.go control: dependencies for pulling with containerd 2017-05-26 15:15:20 -07:00
syscall.go vendor: update containerd to 1.3.0-beta.0 2019-08-20 17:00:47 -07:00
zsyscall_windows.go vendor: update containerd to 1.3.0-beta.0 2019-08-20 17:00:47 -07:00

README.md

go-winio

This repository contains utilities for efficiently performing Win32 IO operations in Go. Currently, this is focused on accessing named pipes and other file handles, and for using named pipes as a net transport.

This code relies on IO completion ports to avoid blocking IO on system threads, allowing Go to reuse the thread to schedule another goroutine. This limits support to Windows Vista and newer operating systems. This is similar to the implementation of network sockets in Go's net package.

Please see the LICENSE file for licensing information.

This project has adopted the Microsoft Open Source Code of Conduct. For more information see the Code of Conduct FAQ or contact opencode@microsoft.com with any additional questions or comments.

Thanks to natefinch for the inspiration for this library. See https://github.com/natefinch/npipe for another named pipe implementation.