Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCorinna Vinschen <corinna@vinschen.de>2011-08-31 20:35:19 +0400
committerCorinna Vinschen <corinna@vinschen.de>2011-08-31 20:35:19 +0400
commit52a5f8cc1a6d3312073b715410253dc219132345 (patch)
tree17884e6fce9d5b35d5dca9138aadb97e514fec0b
parent2e560a092c1c2e6405dd538cde0308a07215970f (diff)
* flock.cc (inode_t::unlock_and_remove_if_unused): Rename from
unlock_and_remove.
-rw-r--r--winsup/cygwin/ChangeLog5
-rw-r--r--winsup/cygwin/flock.cc12
2 files changed, 11 insertions, 6 deletions
diff --git a/winsup/cygwin/ChangeLog b/winsup/cygwin/ChangeLog
index 1547a0087..6f7fcae0b 100644
--- a/winsup/cygwin/ChangeLog
+++ b/winsup/cygwin/ChangeLog
@@ -1,3 +1,8 @@
+2011-08-31 Corinna Vinschen <corinna@vinschen.de>
+
+ * flock.cc (inode_t::unlock_and_remove_if_unused): Rename from
+ unlock_and_remove.
+
2011-08-29 Corinna Vinschen <corinna@vinschen.de>
* flock.cc (LOCK_OBJ_NAME_LEN): Change to accommodate extra lf_ver
diff --git a/winsup/cygwin/flock.cc b/winsup/cygwin/flock.cc
index 70b0c088e..940b8b79f 100644
--- a/winsup/cygwin/flock.cc
+++ b/winsup/cygwin/flock.cc
@@ -312,7 +312,7 @@ class inode_t
void notused () { i_cnt = 0; }
- void unlock_and_remove ();
+ void unlock_and_remove_if_unused ();
lockf_t *get_all_locks_list ();
@@ -329,7 +329,7 @@ inode_t::~inode_t ()
}
void
-inode_t::unlock_and_remove ()
+inode_t::unlock_and_remove_if_unused ()
{
UNLOCK ();
INODE_LIST_LOCK ();
@@ -400,7 +400,7 @@ fhandler_base::del_my_locks (del_lock_called_from from)
lock event would be premature. */
node->del_my_locks (from == after_fork ? 0 : get_unique_id (),
from == after_exec ? NULL : get_handle ());
- node->unlock_and_remove ();
+ node->unlock_and_remove_if_unused ();
}
}
@@ -851,7 +851,7 @@ restart: /* Entry point after a restartable signal came in. */
clean = new lockf_t ();
if (!clean)
{
- node->unlock_and_remove ();
+ node->unlock_and_remove_if_unused ();
set_errno (ENOLCK);
return -1;
}
@@ -865,7 +865,7 @@ restart: /* Entry point after a restartable signal came in. */
myself->dwProcessId, 0);
if (!lock)
{
- node->unlock_and_remove ();
+ node->unlock_and_remove_if_unused ();
set_errno (ENOLCK);
return -1;
}
@@ -901,7 +901,7 @@ restart: /* Entry point after a restartable signal came in. */
delete lock;
lock = n;
}
- node->unlock_and_remove ();
+ node->unlock_and_remove_if_unused ();
switch (error)
{
case 0: /* All is well. */