unix: add InotifyInit for mips64

This commit is contained in:
Doorer
2020-02-10 11:17:15 +08:00
parent d101bd2416
commit 2b5b171559

View File

@@ -224,3 +224,8 @@ func Poll(fds []PollFd, timeout int) (n int, err error) {
}
return poll(&fds[0], len(fds), timeout)
}
func InotifyInit() (fd int, err error) {
return InotifyInit1(0)
}