File: sync_unix_test.go

package info (click to toggle)
golang-github-rjeczalik-notify 0.9.2-2
  • links: PTS, VCS
  • area: main
  • in suites:
  • size: 452 kB
  • sloc: makefile: 3
file content (18 lines) | stat: -rw-r--r-- 401 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Copyright (c) 2014-2015 The Notify Authors. All rights reserved.
// Use of this source code is governed by the MIT license that can be
// found in the LICENSE file.

// +build !windows

package notify

import "golang.org/x/sys/unix"

func Sync() {
	unix.Sync()
}

// UpdateWait is required only by windows watcher implementation. On other
// platforms this function is no-op.
func UpdateWait() {
}