summaryrefslogtreecommitdiff
path: root/ACE/ace/Map_Manager.cpp
diff options
context:
space:
mode:
authorJohnny Willemsen <jwillemsen@remedy.nl>2006-12-27 09:26:59 +0000
committerJohnny Willemsen <jwillemsen@remedy.nl>2006-12-27 09:26:59 +0000
commit1272f3b07cd987faa474b6e9ca7424b3f461362a (patch)
treedf1de14a0e2125e93fc62255f587590ed7f9f5d5 /ACE/ace/Map_Manager.cpp
parent28bf7228a53acd8d9db8c6b14a3953636300fe80 (diff)
downloadATCD-1272f3b07cd987faa474b6e9ca7424b3f461362a.tar.gz
Wed Dec 27 09:24:12 UTC 2006 Johnny Willemsen <jwillemsen@remedy.nl>
Diffstat (limited to 'ACE/ace/Map_Manager.cpp')
-rw-r--r--ACE/ace/Map_Manager.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/ACE/ace/Map_Manager.cpp b/ACE/ace/Map_Manager.cpp
index f39124ce9d9..7ee226e8821 100644
--- a/ACE/ace/Map_Manager.cpp
+++ b/ACE/ace/Map_Manager.cpp
@@ -170,7 +170,7 @@ ACE_Map_Manager<EXT_ID, INT_ID, ACE_LOCK>::move_all_free_slots_from_occupied_lis
if (current_slot.free_)
{
// Reset free flag to zero before moving to free list.
- current_slot.free_ = 0;
+ current_slot.free_ = false;
// Move from occupied list to free list.
this->move_from_occupied_list_to_free_list (position_of_current_slot);
@@ -461,7 +461,7 @@ ACE_Map_Manager<EXT_ID, INT_ID, ACE_LOCK>::unbind_slot (ACE_UINT32 slot)
// run out of free slots in the free list.
//
- this->search_structure_[slot].free_ = 1;
+ this->search_structure_[slot].free_ = true;
#else
@@ -530,7 +530,7 @@ ACE_Map_Manager<EXT_ID, INT_ID, ACE_LOCK>::resize_i (ACE_UINT32 new_size)
// flag to be zero so that we don't have to set it when the slot
// is moved to the occupied list. In addition, this flag has no
// meaning while this slot is in the free list.
- temp[i].free_ = 0;
+ temp[i].free_ = false;
#endif /* ACE_HAS_LAZY_MAP_MANAGER */