Changeset 1409

Show
Ignore:
Timestamp:
11/02/08 02:31:14 (15 years ago)
Author:
ppalmers
Message:

small addition

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/libffado-2.0/src/libieee1394/ieee1394service.cpp

    r1385 r1409  
    183183        Util::SystemTimeSource::SleepUsecRelative( sleep_time_ms * 1000); 
    184184    } while (gen_current != getGeneration() && --nb_tries); 
     185 
     186    debugOutput(DEBUG_LEVEL_VERBOSE, "Bus reset storm over at gen: %u\n", gen_current); 
    185187 
    186188    if (!nb_tries) { 
  • branches/libffado-2.0/src/libieee1394/ieee1394service.h

    r1373 r1409  
    275275        Util::MutexLockHelper lock(*m_handle_lock); 
    276276        return raw1394_get_generation( m_handle ); 
     277    } 
     278 
     279    /** 
     280     * @brief update the current generation 
     281     * 
     282     * @return the current generation 
     283     **/ 
     284    void updateGeneration() { 
     285        Util::MutexLockHelper lock(*m_handle_lock); 
     286        raw1394_update_generation( m_handle, getGeneration()); 
    277287    } 
    278288