summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Kerrisk <mtk.manpages@gmail.com>2014-07-05 08:54:58 +0200
committerMichael Kerrisk <mtk.manpages@gmail.com>2014-07-05 08:54:58 +0200
commit8be6f4e1cdb03db694b3b9804be0dd4e13de2ec0 (patch)
treebacd927912ffe6195e62343e4442dbbf33ce95e3
parente2cfd90e5bdaa1e03a4555343ca39176c8cf839b (diff)
fcntl.2: Use proper page cross-references in F_NOTIFY discussion
Signed-off-by: Michael Kerrisk <mtk.manpages@gmail.com>
-rw-r--r--man2/fcntl.240
1 files changed, 34 insertions, 6 deletions
diff --git a/man2/fcntl.2 b/man2/fcntl.2
index cee67c378..f2a2ca747 100644
--- a/man2/fcntl.2
+++ b/man2/fcntl.2
@@ -1155,22 +1155,50 @@ the following bits:
.PD 0
.TP 12
.B DN_ACCESS
-A file was accessed (read, pread, readv)
+A file was accessed
+.RB ( read (2),
+.BR pread (2),
+.BR readv (2),
+and similar)
.TP
.B DN_MODIFY
-A file was modified (write, pwrite, writev, truncate, ftruncate).
+A file was modified
+.RB ( write (2),
+.BR pwrite (2),
+.BR writev (2),
+.BR truncate (2),
+.BR ftruncate (2),
+and similar).
.TP
.B DN_CREATE
-A file was created (open, creat, mknod, mkdir, link, symlink, rename).
+A file was created
+.RB ( open (2),
+.BR creat (2),
+.BR mknod (2),
+.BR mkdir (2),
+.BR link (2),
+.BR symlink (2),
+.BR rename (2)
+into this directory).
.TP
.B DN_DELETE
-A file was unlinked (unlink, rename to another directory, rmdir).
+A file was unlinked
+.RB ( unlink (2),
+.BR rename (2)
+to another directory,
+.BR rmdir (2)).
.TP
.B DN_RENAME
-A file was renamed within this directory (rename).
+A file was renamed within this directory
+.RB ( rename (2)).
.TP
.B DN_ATTRIB
-The attributes of a file were changed (chown, chmod, utime[s]).
+The attributes of a file were changed
+.RB ( chown (2),
+.BR chmod (2),
+.BR utime (2),
+.BR utimensat (2),
+and similar).
.PD
.RE
.IP