]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[2831] Make a minor comment update about additional case
authorMukund Sivaraman <muks@isc.org>
Mon, 29 Apr 2013 07:41:37 +0000 (13:11 +0530)
committerMukund Sivaraman <muks@isc.org>
Mon, 29 Apr 2013 07:41:37 +0000 (13:11 +0530)
src/lib/util/memory_segment_mapped.h

index fe8a29a66dcf6ffb6ab8006a019f9064330418e3..7685e30c728211e98fef47537a8d98ebe24730fb 100644 (file)
@@ -38,9 +38,12 @@ namespace util {
 /// Multiple processes can open multiple segments for the same file in
 /// read-only mode at the same time.  But there shouldn't be more than
 /// one process that opens segments for the same file in read-write mode
-/// at the same time.  Likewise, if one process opens a segment for a file
-/// there shouldn't be any other process that opens a segment for the file
-/// in read-only mode.  This class tries to detect any violation of this
+/// at the same time.  Likewise, if one process opens a segment for a
+/// file in read-write mode, there shouldn't be any other process that
+/// opens a segment for the file in read-only mode. If one or more
+/// processes open segments for a file in read-only mode, there
+/// shouldn't be any other process that opens a segment for the file in
+/// read-write mode. This class tries to detect any violation of this
 /// restriction, but this does not intend to provide 100% safety.  It's
 /// generally the user's responsibility to ensure this condition.
 ///