OSDN Git Service

(split) LDP: Update release pages based on LDP 3.65 release
[linuxjm/LDP_man-pages.git] / draft / man7 / inotify.7
index 14a6e77..b6c9669 100644 (file)
@@ -260,12 +260,12 @@ close(fd);
 \fIdir\fP と \fIdir/myfile\fP の両方に対して \fBIN_CLOSE_WRITE\fP イベントが生成される
 .RE
 .PP
-Suppose an application is watching the directories \fIdir1\fP and \fIdir\fP, and
+Suppose an application is watching the directories \fIdir1\fP and \fIdir2\fP, and
 the file \fIdir1/myfile\fP.  The following examples show some events that may
 be generated.
 .RS 4
 .TP 
-link("dir/myfile", "dir2/new");
+link("dir1/myfile", "dir2/new");
 \fImyfile\fP に対して \fBIN_ATTRIB\fP イベントが生成され、 \fIdir2\fP に対して \fBIN_CREATE\fP イベントが生成される。
 .TP 
 rename("dir1/myfile", "dir2/myfile");
@@ -281,12 +281,12 @@ generate the following events:
 .RS 4
 .TP 
 unlink("dir2/yy");
-Generates \fBIN_ATTRIB\fP event for \fIxx\fP (because its link count changes)  and
-an \fBIN_DELETE\fP event for \fIdir2\fP.
+Generates an \fBIN_ATTRIB\fP event for \fIxx\fP (because its link count changes)
+and an \fBIN_DELETE\fP event for \fIdir2\fP.
 .TP 
 unlink("dir1/xx");
 Generates \fBIN_ATTRIB\fP, \fBIN_DELETE_SELF\fP, and \fBIN_IGNORED\fP events for
-\fIxx\fP, and an \fBIN_DELETE\fP for \fIdir1\fP.
+\fIxx\fP, and an \fBIN_DELETE\fP event for \fIdir1\fP.
 .RE
 .PP
 Suppose an application is watching the directory \fIdir\fP and (the empty)
@@ -297,7 +297,7 @@ be generated.
 mkdir("dir/new", mode);
 Generates an \fBIN_CREATE | IN_ISDIR\fP event for \fIdir\fP.
 .TP 
-rmdir("dir/sub");
+rmdir("dir/subdir");
 Generates \fBIN_DELETE_SELF\fP and \fBIN_IGNORED\fP events for \fIsubdir\fP, and an
 \fBIN_DELETE | IN_ISDIR\fP event for \fIdir\fP.
 .RE
@@ -428,6 +428,6 @@ event.  However, as an unintended effect of other changes, since Linux
 
 Linux カーネルソース内の \fIDocumentation/filesystems/inotify.txt\fP
 .SH この文書について
-この man ページは Linux \fIman\-pages\fP プロジェクトのリリース 3.64 の一部
+この man ページは Linux \fIman\-pages\fP プロジェクトのリリース 3.65 の一部
 である。プロジェクトの説明とバグ報告に関する情報は
 http://www.kernel.org/doc/man\-pages/ に書かれている。