Subversion Repositories tpanel

Rev

Rev 349 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 349 Rev 350
Line 475... Line 475...
475
 
475
 
476
void TObject::invalidateAllSubObjects(ulong handle)
476
void TObject::invalidateAllSubObjects(ulong handle)
477
{
477
{
478
    DECL_TRACER("TObject::invalidateAllSubObjects(ulong handle)");
478
    DECL_TRACER("TObject::invalidateAllSubObjects(ulong handle)");
479
 
479
 
480
    TLOCKER(mutex_obj);
-
 
481
 
-
 
482
    if (mObjects.empty())
480
    if (mObjects.empty())
483
        return;
481
        return;
484
 
482
 
-
 
483
    TLOCKER(mutex_obj);
-
 
484
 
485
    map<ulong, OBJECT_t>::iterator iter;
485
    map<ulong, OBJECT_t>::iterator iter;
486
    bool first = true;
486
    bool first = true;
487
 
487
 
488
    for (iter = mObjects.find(handle); iter != mObjects.end(); ++iter)
488
    for (iter = mObjects.find(handle); iter != mObjects.end(); ++iter)
489
    {
489
    {