@@ -35,10 +35,10 @@ using namespace std;
35
35
36
36
#include < srs_protocol_kbps.hpp>
37
37
38
- extern SrsPps* _srs_thread_sync_10us;
39
- extern SrsPps* _srs_thread_sync_100us;
40
- extern SrsPps* _srs_thread_sync_1000us;
41
- extern SrsPps* _srs_thread_sync_plus;
38
+ SrsPps* _srs_thread_sync_10us = new SrsPps() ;
39
+ SrsPps* _srs_thread_sync_100us = new SrsPps() ;
40
+ SrsPps* _srs_thread_sync_1000us = new SrsPps() ;
41
+ SrsPps* _srs_thread_sync_plus = new SrsPps() ;
42
42
43
43
SrsThreadMutex::SrsThreadMutex ()
44
44
{
@@ -310,9 +310,28 @@ srs_error_t SrsAsyncFileWriter::flush()
310
310
{
311
311
srs_error_t err = srs_success;
312
312
313
+ // The time to wait here, is the time to wait there, because they wait for the same lock
314
+ // at queue to push_back or swap all messages.
315
+ srs_utime_t now = srs_update_system_time ();
316
+
313
317
vector<SrsSharedPtrMessage*> flying;
314
- queue_->swap (flying);
318
+ if (true ) {
319
+ queue_->swap (flying);
320
+ }
321
+
322
+ // Stat the sync wait of locks.
323
+ srs_utime_t elapsed = srs_update_system_time () - now;
324
+ if (elapsed <= 10 ) {
325
+ ++_srs_thread_sync_10us->sugar ;
326
+ } else if (elapsed <= 100 ) {
327
+ ++_srs_thread_sync_100us->sugar ;
328
+ } else if (elapsed <= 1000 ) {
329
+ ++_srs_thread_sync_1000us->sugar ;
330
+ } else {
331
+ ++_srs_thread_sync_plus->sugar ;
332
+ }
315
333
334
+ // Flush the flying messages to disk.
316
335
for (int i = 0 ; i < (int )flying.size (); i++) {
317
336
SrsSharedPtrMessage* msg = flying.at (i);
318
337
0 commit comments