1
0

ModMask const modified with IN_IGNORED mask and now called ModIgnMask.

This commit is contained in:
Alexander Andreev 2022-05-24 23:17:35 +04:00
parent f2fcadd0c5
commit ef27662de5
Signed by: Arav
GPG Key ID: 0388CC8FAA51063F

View File

@ -8,8 +8,8 @@ import (
)
const (
CrDelMask uint32 = syscall.IN_CREATE | syscall.IN_DELETE
ModMask uint32 = syscall.IN_MODIFY
CrDelMask uint32 = syscall.IN_CREATE | syscall.IN_DELETE
ModIgnMask uint32 = syscall.IN_MODIFY | syscall.IN_IGNORED
)
const inotifyCount = 16