summaryrefslogtreecommitdiff
path: root/ACE/ace/Map_Manager.cpp
diff options
context:
space:
mode:
authordengg <dengg@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2007-01-08 18:04:16 +0000
committerdengg <dengg@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>2007-01-08 18:04:16 +0000
commitf2467c5915867c006aa16fd22e482816e029a2db (patch)
tree61d8fcb4aa8a71d9034ff510ee52b2b7ca13fb5c /ACE/ace/Map_Manager.cpp
parenta2b8eda5d51dca5496c94600a7d3082b1a5f3601 (diff)
downloadATCD-ReDaC_01.tar.gz
made a copyReDaC_01
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 7ee226e8821..f39124ce9d9 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_ = false;
+ current_slot.free_ = 0;
// 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_ = true;
+ this->search_structure_[slot].free_ = 1;
#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_ = false;
+ temp[i].free_ = 0;
#endif /* ACE_HAS_LAZY_MAP_MANAGER */