aboutsummaryrefslogtreecommitdiff
path: root/src/syscall
diff options
context:
space:
mode:
authorqmuntal <quimmuntal@gmail.com>2025-11-26 12:11:50 +0100
committerGopher Robot <gobot@golang.org>2025-11-26 11:56:54 -0800
commitb194f5d24a71e34f147c90e4351d80ac75be55de (patch)
treea69e72966e451d77002282b19adfaa20210a9b83 /src/syscall
parente0a4dffb0c0eff51bb5b170d4ae0492a43de153d (diff)
downloadgo-b194f5d24a71e34f147c90e4351d80ac75be55de.tar.xz
os,internal/syscall/windows: support O_* flags in Root.OpenFile
These file flags are supported by os.OpenFile since CL 699415. Closes #73676 Change-Id: Ib37102a565f538d394d2a94bd605d6c6004f3028 Reviewed-on: https://go-review.googlesource.com/c/go/+/724621 Auto-Submit: Damien Neil <dneil@google.com> Reviewed-by: Damien Neil <dneil@google.com> LUCI-TryBot-Result: Go LUCI <golang-scoped@luci-project-accounts.iam.gserviceaccount.com> Reviewed-by: Cherry Mui <cherryyz@google.com>
Diffstat (limited to 'src/syscall')
-rw-r--r--src/syscall/types_windows.go1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/syscall/types_windows.go b/src/syscall/types_windows.go
index 3c6d18a850..1bffb2769d 100644
--- a/src/syscall/types_windows.go
+++ b/src/syscall/types_windows.go
@@ -54,7 +54,6 @@ const (
o_DIRECTORY = 0x04000
O_CLOEXEC = 0x80000
o_NOFOLLOW_ANY = 0x200000000 // used by internal/syscall/windows
- o_OPEN_REPARSE = 0x400000000 // used by internal/syscall/windows
o_WRITE_ATTRS = 0x800000000 // used by internal/syscall/windows
)