Changeset 1057 for branches/Carsten_PtrWork2/Source/System/FieldContainer/Base/OSGFieldContainer.inl
- Timestamp:
- 02/04/08 14:46:15 (1 year ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/Carsten_PtrWork2/Source/System/FieldContainer/Base/OSGFieldContainer.inl
r1041 r1057 104 104 FieldContainer::subReference(void) 105 105 { 106 FDEBUG(("FieldContainer::subReference [%p] START - [%d %d %d] [%s]\n", 107 this, _pAspectStore->getExternalRefCount(), this->_internalRefCount, this->_weakRefCount, 106 FINFO(("FieldContainer::subReference [%d] [%p] START - [%d %d %d] [%s]\n", 107 this->getId(), this, 108 _pAspectStore->getExternalRefCount(), this->_internalRefCount, this->_weakRefCount, 108 109 this->getType().getCName())); 109 110 … … 114 115 (_pAspectStore->getExternalRefCount() <= 0 ) ) 115 116 { 116 F DEBUG(("FieldContainer::subReference [%p] E, I - RESOLVE\n", this));117 FINFO(("FieldContainer::subReference [%d] [%p] E, I - RESOLVE\n", this->getId(), this)); 117 118 118 119 this->_resolveInProgress = true; … … 121 122 if(this->_weakRefCount <= 0) 122 123 { 123 F DEBUG(("FieldContainer::subReference [%p] E, I, W - RESOLVE, DESTROY\n", this));124 FINFO(("FieldContainer::subReference [%d] [%p] E, I, W - RESOLVE, DESTROY\n", this->getId(), this)); 124 125 125 126 this->destroyAspect(); … … 131 132 } 132 133 133 F DEBUG(("FieldContainer::subReference [%p] STOP\n", this));134 FINFO(("FieldContainer::subReference [%d] [%p] STOP\n", this->getId(), this)); 134 135 } 135 136 … … 178 179 FieldContainer::subExternalReference(void) 179 180 { 180 FDEBUG(("FieldContainer::subExternalReference [%p] START - [%d %d %d] [%s]\n", 181 this, _pAspectStore->getExternalRefCount(), this->_internalRefCount, this->_weakRefCount, 181 FINFO(("FieldContainer::subExternalReference [%d] [%p] START - [%d %d %d] [%s]\n", 182 this->getId(), this, 183 _pAspectStore->getExternalRefCount(), this->_internalRefCount, this->_weakRefCount, 182 184 this->getType().getCName())); 183 185 … … 190 192 if(_pAspectStore->getExternalRefCount() <= 0) 191 193 { 192 F DEBUG(("FieldContainer::subExternalReference [%p] E\n", this));194 FINFO(("FieldContainer::subExternalReference [%d] [%p] E\n", this->getId(), this)); 193 195 194 196 _pAspectStore->releaseExternalReferenceCountLock(); … … 204 206 (pAspect->_internalRefCount <= 0 ) ) 205 207 { 206 F DEBUG(("FieldContainer::subExternalReference [%p] E, I - RESOLVE\n", pAspect));208 FINFO(("FieldContainer::subExternalReference [%p] E, I - RESOLVE\n", pAspect)); 207 209 208 210 pAspect->_resolveInProgress = true; … … 211 213 if(pAspect->_weakRefCount <= 0) 212 214 { 213 F DEBUG(("FieldContainer::subExternalReference [%p] E, I, W - RESOLVE, DESTROY\n", pAspect));215 FINFO(("FieldContainer::subExternalReference [%p] E, I, W - RESOLVE, DESTROY\n", pAspect)); 214 216 215 217 lastAspect = pAspect->destroyAspect(pAspect->getId(), i); … … 230 232 } 231 233 232 F DEBUG(("FieldContainer::subExternalReference [%p] STOP\n", this));234 FINFO(("FieldContainer::subExternalReference [%d] [%p] STOP\n", this->getId(), this)); 233 235 } 234 236 … … 259 261 FieldContainer::subWeakReference(void) 260 262 { 261 FDEBUG(("FieldContainer::subWeakReference [%p] START - [%d %d %d] [%s]\n", 262 this, _pAspectStore->getExternalRefCount(), this->_internalRefCount, this->_weakRefCount, 263 FINFO(("FieldContainer::subWeakReference [%d] [%p] START - [%d %d %d] [%s]\n", 264 this->getId(), this, 265 _pAspectStore->getExternalRefCount(), this->_internalRefCount, this->_weakRefCount, 263 266 this->getType().getCName())); 264 267 … … 270 273 (_pAspectStore->getExternalRefCount() <= 0 ) ) 271 274 { 272 F DEBUG(("FieldContainer::subWeakReference [%p] E, I, W - DESTROY\n", this));275 FINFO(("FieldContainer::subWeakReference [%d] [%p] E, I, W - DESTROY\n", this->getId(), this)); 273 276 274 277 this->destroyAspect(); 275 278 } 276 279 277 F DEBUG(("FieldContainer::subWeakReference [%p] STOP\n", this));280 FINFO(("FieldContainer::subWeakReference [%d] [%p] STOP\n", this->getId(), this)); 278 281 } 279 282
