Changeset 839
- Timestamp:
- 01/13/08 07:21:29 (16 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/libffado/src/libstreaming/generic/PortManager.cpp
r833 r839 47 47 debugOutput( DEBUG_LEVEL_VERBOSE, "deleting port %s at %p\n", (*it)->getName().c_str(), *it); 48 48 flushDebugOutput(); 49 delete *it; //FIXME49 delete *it; 50 50 } 51 51 } trunk/libffado/src/libstreaming/generic/StreamProcessor.cpp
r833 r839 910 910 StreamProcessor::waitForSignal() 911 911 { 912 debugOutput(DEBUG_LEVEL_VER BOSE, "(%p, %s) wait ...\n", this, getTypeString());912 debugOutput(DEBUG_LEVEL_VERY_VERBOSE, "(%p, %s) wait ...\n", this, getTypeString()); 913 913 int result; 914 914 if(m_state == ePS_Running && m_next_state == ePS_Running) { trunk/libffado/src/libstreaming/StreamProcessorManager.cpp
r833 r839 580 580 } 581 581 if(cnt==0) { 582 debug Output(DEBUG_LEVEL_VERBOSE," Timeout waiting for the SP's to start dry-running\n");582 debugWarning(" Timeout waiting for the SP's to start dry-running\n"); 583 583 for ( StreamProcessorVectorIterator it = m_ReceiveProcessors.begin(); 584 584 it != m_ReceiveProcessors.end(); … … 611 611 } 612 612 } 613 // wait for the SP's to get into the runningstate614 cnt = 200 ;613 // wait for the SP's to get into the stopped state 614 cnt = 2000; 615 615 ready = false; 616 616 while (!ready && cnt) { … … 630 630 } 631 631 if(cnt==0) { 632 debugOutput(DEBUG_LEVEL_VERBOSE, " Timeout waiting for the SP's to stop\n"); 632 debugWarning(" Timeout waiting for the SP's to stop\n"); 633 for ( StreamProcessorVectorIterator it = m_ReceiveProcessors.begin(); 634 it != m_ReceiveProcessors.end(); 635 ++it ) { 636 (*it)->dumpInfo(); 637 } 638 for ( StreamProcessorVectorIterator it = m_TransmitProcessors.begin(); 639 it != m_TransmitProcessors.end(); 640 ++it ) { 641 (*it)->dumpInfo(); 642 } 633 643 return false; 634 644 }