diff options
author | Corinna Vinschen <corinna@vinschen.de> | 2009-04-20 17:13:19 +0000 |
---|---|---|
committer | Corinna Vinschen <corinna@vinschen.de> | 2009-04-20 17:13:19 +0000 |
commit | 5698171a3f3c7d8dd535466fd8f54e9deb8f170f (patch) | |
tree | 36ff31f9777790374e7960895e5650a459e8eac6 /winsup/cygwin/flock.cc | |
parent | b978c43ea0ce397307c216e61b8fd405cd085b46 (diff) | |
download | cygnal-5698171a3f3c7d8dd535466fd8f54e9deb8f170f.tar.gz cygnal-5698171a3f3c7d8dd535466fd8f54e9deb8f170f.tar.bz2 cygnal-5698171a3f3c7d8dd535466fd8f54e9deb8f170f.zip |
* flock.cc (lf_setlock): Handle border case which results in WFMO loop
exiting with ret == WAIT_TIMEOUT gracefully. Add a system_printf to
uncover other potential problems with WFMO loop.
Diffstat (limited to 'winsup/cygwin/flock.cc')
-rw-r--r-- | winsup/cygwin/flock.cc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/winsup/cygwin/flock.cc b/winsup/cygwin/flock.cc index e17166044..8fd71391a 100644 --- a/winsup/cygwin/flock.cc +++ b/winsup/cygwin/flock.cc @@ -971,6 +971,12 @@ lf_setlock (lockf_t *lock, inode_t *node, lockf_t **clean, HANDLE fhdl) ret = WaitForMultipleObjects (2, w4, FALSE, 100L); } while (ret == WAIT_TIMEOUT && get_obj_handle_count (obj) > 1); + /* There's a good chance that the above loop is left with + ret == WAIT_TIMEOUT if another process closes the file handle + associated with this lock. This is for all practical purposes + equivalent to a signalled lock object. */ + if (ret == WAIT_TIMEOUT) + ret = WAIT_OBJECT_0; } node->LOCK (); node->unwait (); @@ -991,6 +997,8 @@ lf_setlock (lockf_t *lock, inode_t *node, lockf_t **clean, HANDLE fhdl) _my_tls.call_signal_handler (); return EINTR; default: + system_printf ("Shouldn't happen! ret = %lu, error: %lu\n", + ret, GetLastError ()); return geterrno_from_win_error (); } } |