Show
Ignore:
Timestamp:
03/08/08 03:56:18 (16 years ago)
Author:
ppalmers
Message:

Fix compilation with extreme debugging enabled

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/libffado/src/libieee1394/IsoHandlerManager.cpp

    r904 r911  
    155155 
    156156    // Use a shadow map of the fd's such that the poll call is not in a critical section 
    157     DEBUG_EXTREME( uint64_t poll_enter = m_service.getCurrentTimeAsUsecs() ); 
    158157    err = poll (m_poll_fds_shadow, m_poll_nfds_shadow, m_poll_timeout); 
    159     DEBUG_EXTREME( uint64_t poll_exit = m_service.getCurrentTimeAsUsecs() ); 
    160158 
    161159    if (err < 0) { 
     
    167165    } 
    168166 
    169     DEBUG_EXTREME( uint64_t iter_enter = m_service.getCurrentTimeAsUsecs() ); 
    170167    for (i = 0; i < m_poll_nfds_shadow; i++) { 
    171168        #ifdef DEBUG 
     
    206203 
    207204    } 
    208     DEBUG_EXTREME( uint64_t iter_exit = m_service.getCurrentTimeAsUsecs() ); 
    209  
    210     debugOutputExtreme(DEBUG_LEVEL_VERY_VERBOSE, " poll took %6lldus, iterate took %6lldus, iterated (R: %2d, X: %2d) handlers\n", 
    211                        poll_exit-poll_enter, iter_exit-iter_enter, 
    212                        nb_rcv, nb_xmit); 
     205                      nb_rcv, nb_xmit); 
    213206 
    214207    return true; 
  • trunk/libffado/src/libutil/TimestampedBuffer.cpp

    r907 r911  
    965965    debugOutputExtreme(DEBUG_LEVEL_VERY_VERBOSE, 
    966966                       "B: FC=%10u, TS="TIMESTAMP_FORMAT_SPEC", NTS="TIMESTAMP_FORMAT_SPEC"\n", 
    967                        m_framecounter, m_buffer_tail_timestamp, pred_buffer_next_tail_timestamp); 
     967                       m_framecounter, m_buffer_tail_timestamp, m_buffer_next_tail_timestamp); 
    968968 
    969969    ENTER_CRITICAL_SECTION;