[*] Remove debug mask
This commit is contained in:
parent
3defb1bb14
commit
92e195e870
@ -97,7 +97,7 @@ namespace Aurora::IO::FS
|
||||
|
||||
if (AuExists(request.events, EWatchEvent::eFileModify) || !bIsDirectory)
|
||||
{
|
||||
mask |= IN_MODIFY | IN_CLOSE_WRITE;
|
||||
mask |= IN_MODIFY;
|
||||
}
|
||||
|
||||
//if (AuExists(request.events, EWatchEvent::eSelfDelete))
|
||||
@ -105,8 +105,6 @@ namespace Aurora::IO::FS
|
||||
mask |= IN_DELETE_SELF | IN_MOVE_SELF;
|
||||
}
|
||||
|
||||
mask = IN_ALL_EVENTS;
|
||||
|
||||
int ret = inotify_add_watch(this->inotifyHandle_, cached.strNormalizedPath.c_str(), mask);
|
||||
if (ret == -1)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user