mirror of
https://github.com/luxfi/netrunner.git
synced 2026-07-27 00:04:23 +00:00
12 lines
266 B
Go
12 lines
266 B
Go
//go:build windows
|
|
// +build windows
|
|
|
|
package local
|
|
|
|
// syncFilesystem is a no-op on Windows.
|
|
// Windows doesn't have an equivalent syscall.Sync() function.
|
|
// File handles are synced individually via FlushFileBuffers.
|
|
func syncFilesystem() {
|
|
// No-op on Windows
|
|
}
|