]> sourceware.org Git - newlib-cygwin.git/commitdiff
* errno.cc (errmap): Map ERROR_LOCK_VIOLATION to EBUSY.
authorCorinna Vinschen <corinna@vinschen.de>
Fri, 18 Jan 2013 16:09:51 +0000 (16:09 +0000)
committerCorinna Vinschen <corinna@vinschen.de>
Fri, 18 Jan 2013 16:09:51 +0000 (16:09 +0000)
winsup/cygwin/ChangeLog
winsup/cygwin/errno.cc

index f75aa354c59e89a119f63af977f951238513f2d6..e43b049a856999d3fa41879a130da0e880c9256c 100644 (file)
@@ -1,4 +1,8 @@
-2013-01-18  Christopher Faylor  <me.cygwin2013@cgf.cx>
+2013-01-18  Corinna Vinschen  <corinna@vinschen.de>
+
+       * errno.cc (errmap): Map ERROR_LOCK_VIOLATION to EBUSY.
+
+2013-01-18  Corinna Vinschen  <corinna@vinschen.de>
 
        * mmap.cc (handler_disk_file::msync): Add call to FlushFileBuffers
        to implement MS_SYNC.
index e71863d87323e1bcc738df4d246edeb495a91a6d..c76b8b5c1cfc9e7e49e3a20cf4dcf6bebda0886c 100644 (file)
@@ -1,7 +1,7 @@
 /* errno.cc: errno-related functions
 
    Copyright 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
-   2006, 2008, 2009, 2010, 2011 Red Hat, Inc.
+   2006, 2008, 2009, 2010, 2011, 2012, 2013 Red Hat, Inc.
 
 This file is part of Cygwin.
 
@@ -103,7 +103,7 @@ static NO_COPY struct
   X (IO_DEVICE,                        EIO),
   X (IO_INCOMPLETE,            EAGAIN),
   X (IO_PENDING,               EAGAIN),
-  X (LOCK_VIOLATION,           EACCES),
+  X (LOCK_VIOLATION,           EBUSY),
   X (MAX_THRDS_REACHED,                EAGAIN),
   X (META_EXPANSION_TOO_LONG,  EINVAL),
   X (MOD_NOT_FOUND,            ENOENT),
This page took 0.031842 seconds and 5 git commands to generate.