Update mkwinsyscall and make stand alone tool #248
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Updated
mkwinsyscall
to latest version, and created a standalone tool that can be called from go-winio and hcsshim.Used latest version from:
https://github.com/golang/sys/blob/bc2c85ada10aa9b6aa9607e9ac9ad0761b95cf1d/windows/mkwinsyscall/mkwinsyscall.go
Applied changes from both
go-winio
(forced UTF-16,go-winio
import) andhcsshim
(UTF-16,HResult
error return type)Added (temporary?) flag to disable sorting so that generated syscall file diffs in hcsshim are easier to read.
Added build constraint comment to generated file, in case file names do not have one.
Allowed input files can be specified with a glob pattern.
This allows
hcsshim/internal/winapi
to avoid listing all the files within it://go:generate go run github.com/Microsoft/go-winio/tools/mkwinsyscall -output zsyscall_windows.go ./*.go
PR has two commits so that changes can be rebased on newer versions of
golang.org/x/sys/windows/mkwinsyscall
, but it may make more sense to create a dedicated branch on this repo with those commitsSigned-off-by: Hamza El-Saawy hamzaelsaawy@microsoft.com