linux: add IN_MOVE_SELF to inotify event mask

Partially fixes joyent/node#3172, behavior is now consistent with inotifywait.
This commit is contained in:
Ben Noordhuis 2012-04-25 01:26:41 +02:00
parent e6d4bca2ec
commit 06ae804e03

View File

@ -271,6 +271,7 @@ int uv_fs_event_init(uv_loop_t* loop,
| IN_MODIFY
| IN_DELETE
| IN_DELETE_SELF
| IN_MOVE_SELF
| IN_MOVED_FROM
| IN_MOVED_TO;