mirror of
https://github.com/apache/nuttx.git
synced 2026-08-01 20:28:58 +00:00
documentation/inotify: add newly supported events
IN_CLOSE_WRITE and IN_CLOSE_NOWRITE are now supported and IN_MODIFY can be used for truncate as well. Signed-off-by: Michal Lenc <michallenc@seznam.cz>
This commit is contained in:
parent
531dbaf561
commit
dc6f406e7f
1 changed files with 5 additions and 1 deletions
|
|
@ -90,12 +90,16 @@ calling inotify_add_watch and may be returned in the mask field returned by re
|
|||
|
||||
**IN_ACCESS** :File was accessed
|
||||
|
||||
**IN_MODIFY** :File was modified
|
||||
**IN_MODIFY** :File was modified (``write()`` or ``truncate()``)
|
||||
|
||||
**IN_ATTRIB** :Metadata changed
|
||||
|
||||
**IN_OPEN** :File was opened
|
||||
|
||||
**IN_CLOSE_WRITE** :File opened for writing was closed
|
||||
|
||||
**IN_CLOSE_NOWRITE** : File not opened for writing was closed
|
||||
|
||||
**IN_MOVED_FROM** :File was moved from X
|
||||
|
||||
**IN_MOVED_TO** :File was moved to Y
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue