]> git.ipfire.org Git - thirdparty/open-vm-tools.git/commitdiff
Remove a duplicate comment from fileIOPosix.c.
authorVMware, Inc <>
Thu, 17 Dec 2009 21:43:36 +0000 (13:43 -0800)
committerMarcelo Vanzin <mvanzin@vmware.com>
Thu, 17 Dec 2009 21:43:36 +0000 (13:43 -0800)
Signed-off-by: Marcelo Vanzin <mvanzin@vmware.com>
open-vm-tools/lib/file/fileIOPosix.c

index a715d88b8cba53d11bd34fb87327ca19359ad1fb..18df94de05a2a68e3551f2a84aca67fe226ee4ef 100644 (file)
@@ -760,16 +760,6 @@ FileIO_Create(FileIODescriptor *file,    // OUT:
    ASSERT_ON_COMPILE(FILEIO_ERROR_LAST < 16); /* See comment in fileIO.h */
 
 #if defined(__APPLE__)
-   /*
-    * O_EXLOCK, O_SHLOCK behavior tested on Mac OS X Server 10.6, kernel 10.0.0.
-    *
-    * |                      | Block devices      | Regular files
-    * |----------------------|--------------------|----------------
-    * | Locking behavior     | mandatory          | advisory
-    * |                      |                    |
-    * | If O_NONBLOCK absent | open doesn't block | open blocks
-    * |                      | on conflicts       | on conflicts
-    */
    if (access & FILEIO_OPEN_EXCLUSIVE_LOCK_MACOS) {
       flags |= O_EXLOCK;
    }