26 lines
492 B
Go
26 lines
492 B
Go
package fuse
|
|
|
|
import (
|
|
"path/filepath"
|
|
"syscall"
|
|
|
|
"golang.org/x/sys/unix"
|
|
)
|
|
|
|
func pollHack(mountPoint string) error {
|
|
fd, err := syscall.Open(filepath.Join(mountPoint, pollHackName), syscall.O_RDONLY, 0)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
pollData := []unix.PollFd{{
|
|
Fd: int32(fd),
|
|
Events: unix.POLLIN | unix.POLLPRI | unix.POLLOUT,
|
|
}}
|
|
|
|
// Trigger _OP_POLL, so we can say ENOSYS. We don't care about
|
|
// the return value.
|
|
unix.Poll(pollData, 0)
|
|
syscall.Close(fd)
|
|
return nil
|
|
}
|