|
33 | 33 |
|
34 | 34 | using namespace std;
|
35 | 35 |
|
36 |
| -extern SrsPps* _srs_pps_cids_get; |
37 |
| -extern SrsPps* _srs_pps_cids_set; |
| 36 | +extern __thread SrsPps* _srs_pps_cids_get; |
| 37 | +extern __thread SrsPps* _srs_pps_cids_set; |
38 | 38 |
|
39 |
| -extern SrsPps* _srs_pps_timer; |
40 |
| -extern SrsPps* _srs_pps_pub; |
41 |
| -extern SrsPps* _srs_pps_conn; |
42 |
| -extern SrsPps* _srs_pps_dispose; |
| 39 | +extern __thread SrsPps* _srs_pps_timer; |
| 40 | +extern __thread SrsPps* _srs_pps_pub; |
| 41 | +extern __thread SrsPps* _srs_pps_conn; |
| 42 | +extern __thread SrsPps* _srs_pps_dispose; |
43 | 43 |
|
44 | 44 | #if defined(SRS_DEBUG) && defined(SRS_DEBUG_STATS)
|
45 |
| -extern unsigned long long _st_stat_recvfrom; |
46 |
| -extern unsigned long long _st_stat_recvfrom_eagain; |
47 |
| -extern unsigned long long _st_stat_sendto; |
48 |
| -extern unsigned long long _st_stat_sendto_eagain; |
49 |
| -SrsPps* _srs_pps_recvfrom = new SrsPps(); |
50 |
| -SrsPps* _srs_pps_recvfrom_eagain = new SrsPps(); |
51 |
| -SrsPps* _srs_pps_sendto = new SrsPps(); |
52 |
| -SrsPps* _srs_pps_sendto_eagain = new SrsPps(); |
53 |
| - |
54 |
| -extern unsigned long long _st_stat_read; |
55 |
| -extern unsigned long long _st_stat_read_eagain; |
56 |
| -extern unsigned long long _st_stat_readv; |
57 |
| -extern unsigned long long _st_stat_readv_eagain; |
58 |
| -extern unsigned long long _st_stat_writev; |
59 |
| -extern unsigned long long _st_stat_writev_eagain; |
60 |
| -SrsPps* _srs_pps_read = new SrsPps(); |
61 |
| -SrsPps* _srs_pps_read_eagain = new SrsPps(); |
62 |
| -SrsPps* _srs_pps_readv = new SrsPps(); |
63 |
| -SrsPps* _srs_pps_readv_eagain = new SrsPps(); |
64 |
| -SrsPps* _srs_pps_writev = new SrsPps(); |
65 |
| -SrsPps* _srs_pps_writev_eagain = new SrsPps(); |
66 |
| - |
67 |
| -extern unsigned long long _st_stat_recvmsg; |
68 |
| -extern unsigned long long _st_stat_recvmsg_eagain; |
69 |
| -extern unsigned long long _st_stat_sendmsg; |
70 |
| -extern unsigned long long _st_stat_sendmsg_eagain; |
71 |
| -SrsPps* _srs_pps_recvmsg = new SrsPps(); |
72 |
| -SrsPps* _srs_pps_recvmsg_eagain = new SrsPps(); |
73 |
| -SrsPps* _srs_pps_sendmsg = new SrsPps(); |
74 |
| -SrsPps* _srs_pps_sendmsg_eagain = new SrsPps(); |
75 |
| - |
76 |
| -extern unsigned long long _st_stat_epoll; |
77 |
| -extern unsigned long long _st_stat_epoll_zero; |
78 |
| -extern unsigned long long _st_stat_epoll_shake; |
79 |
| -extern unsigned long long _st_stat_epoll_spin; |
80 |
| -SrsPps* _srs_pps_epoll = new SrsPps(); |
81 |
| -SrsPps* _srs_pps_epoll_zero = new SrsPps(); |
82 |
| -SrsPps* _srs_pps_epoll_shake = new SrsPps(); |
83 |
| -SrsPps* _srs_pps_epoll_spin = new SrsPps(); |
84 |
| - |
85 |
| -extern unsigned long long _st_stat_sched_15ms; |
86 |
| -extern unsigned long long _st_stat_sched_20ms; |
87 |
| -extern unsigned long long _st_stat_sched_25ms; |
88 |
| -extern unsigned long long _st_stat_sched_30ms; |
89 |
| -extern unsigned long long _st_stat_sched_35ms; |
90 |
| -extern unsigned long long _st_stat_sched_40ms; |
91 |
| -extern unsigned long long _st_stat_sched_80ms; |
92 |
| -extern unsigned long long _st_stat_sched_160ms; |
93 |
| -extern unsigned long long _st_stat_sched_s; |
94 |
| -SrsPps* _srs_pps_sched_15ms = new SrsPps(); |
95 |
| -SrsPps* _srs_pps_sched_20ms = new SrsPps(); |
96 |
| -SrsPps* _srs_pps_sched_25ms = new SrsPps(); |
97 |
| -SrsPps* _srs_pps_sched_30ms = new SrsPps(); |
98 |
| -SrsPps* _srs_pps_sched_35ms = new SrsPps(); |
99 |
| -SrsPps* _srs_pps_sched_40ms = new SrsPps(); |
100 |
| -SrsPps* _srs_pps_sched_80ms = new SrsPps(); |
101 |
| -SrsPps* _srs_pps_sched_160ms = new SrsPps(); |
102 |
| -SrsPps* _srs_pps_sched_s = new SrsPps(); |
| 45 | +extern __thread unsigned long long _st_stat_recvfrom; |
| 46 | +extern __thread unsigned long long _st_stat_recvfrom_eagain; |
| 47 | +extern __thread unsigned long long _st_stat_sendto; |
| 48 | +extern __thread unsigned long long _st_stat_sendto_eagain; |
| 49 | +__thread SrsPps* _srs_pps_recvfrom = NULL; |
| 50 | +__thread SrsPps* _srs_pps_recvfrom_eagain = NULL; |
| 51 | +__thread SrsPps* _srs_pps_sendto = NULL; |
| 52 | +__thread SrsPps* _srs_pps_sendto_eagain = NULL; |
| 53 | + |
| 54 | +extern __thread unsigned long long _st_stat_read; |
| 55 | +extern __thread unsigned long long _st_stat_read_eagain; |
| 56 | +extern __thread unsigned long long _st_stat_readv; |
| 57 | +extern __thread unsigned long long _st_stat_readv_eagain; |
| 58 | +extern __thread unsigned long long _st_stat_writev; |
| 59 | +extern __thread unsigned long long _st_stat_writev_eagain; |
| 60 | +__thread SrsPps* _srs_pps_read = NULL; |
| 61 | +__thread SrsPps* _srs_pps_read_eagain = NULL; |
| 62 | +__thread SrsPps* _srs_pps_readv = NULL; |
| 63 | +__thread SrsPps* _srs_pps_readv_eagain = NULL; |
| 64 | +__thread SrsPps* _srs_pps_writev = NULL; |
| 65 | +__thread SrsPps* _srs_pps_writev_eagain = NULL; |
| 66 | + |
| 67 | +extern __thread unsigned long long _st_stat_recvmsg; |
| 68 | +extern __thread unsigned long long _st_stat_recvmsg_eagain; |
| 69 | +extern __thread unsigned long long _st_stat_sendmsg; |
| 70 | +extern __thread unsigned long long _st_stat_sendmsg_eagain; |
| 71 | +__thread SrsPps* _srs_pps_recvmsg = NULL; |
| 72 | +__thread SrsPps* _srs_pps_recvmsg_eagain = NULL; |
| 73 | +__thread SrsPps* _srs_pps_sendmsg = NULL; |
| 74 | +__thread SrsPps* _srs_pps_sendmsg_eagain = NULL; |
| 75 | + |
| 76 | +extern __thread unsigned long long _st_stat_epoll; |
| 77 | +extern __thread unsigned long long _st_stat_epoll_zero; |
| 78 | +extern __thread unsigned long long _st_stat_epoll_shake; |
| 79 | +extern __thread unsigned long long _st_stat_epoll_spin; |
| 80 | +__thread SrsPps* _srs_pps_epoll = NULL; |
| 81 | +__thread SrsPps* _srs_pps_epoll_zero = NULL; |
| 82 | +__thread SrsPps* _srs_pps_epoll_shake = NULL; |
| 83 | +__thread SrsPps* _srs_pps_epoll_spin = NULL; |
| 84 | + |
| 85 | +extern __thread unsigned long long _st_stat_sched_15ms; |
| 86 | +extern __thread unsigned long long _st_stat_sched_20ms; |
| 87 | +extern __thread unsigned long long _st_stat_sched_25ms; |
| 88 | +extern __thread unsigned long long _st_stat_sched_30ms; |
| 89 | +extern __thread unsigned long long _st_stat_sched_35ms; |
| 90 | +extern __thread unsigned long long _st_stat_sched_40ms; |
| 91 | +extern __thread unsigned long long _st_stat_sched_80ms; |
| 92 | +extern __thread unsigned long long _st_stat_sched_160ms; |
| 93 | +extern __thread unsigned long long _st_stat_sched_s; |
| 94 | +__thread SrsPps* _srs_pps_sched_15ms = NULL; |
| 95 | +__thread SrsPps* _srs_pps_sched_20ms = NULL; |
| 96 | +__thread SrsPps* _srs_pps_sched_25ms = NULL; |
| 97 | +__thread SrsPps* _srs_pps_sched_30ms = NULL; |
| 98 | +__thread SrsPps* _srs_pps_sched_35ms = NULL; |
| 99 | +__thread SrsPps* _srs_pps_sched_40ms = NULL; |
| 100 | +__thread SrsPps* _srs_pps_sched_80ms = NULL; |
| 101 | +__thread SrsPps* _srs_pps_sched_160ms = NULL; |
| 102 | +__thread SrsPps* _srs_pps_sched_s = NULL; |
103 | 103 | #endif
|
104 | 104 |
|
105 |
| -SrsPps* _srs_pps_clock_15ms = new SrsPps(); |
106 |
| -SrsPps* _srs_pps_clock_20ms = new SrsPps(); |
107 |
| -SrsPps* _srs_pps_clock_25ms = new SrsPps(); |
108 |
| -SrsPps* _srs_pps_clock_30ms = new SrsPps(); |
109 |
| -SrsPps* _srs_pps_clock_35ms = new SrsPps(); |
110 |
| -SrsPps* _srs_pps_clock_40ms = new SrsPps(); |
111 |
| -SrsPps* _srs_pps_clock_80ms = new SrsPps(); |
112 |
| -SrsPps* _srs_pps_clock_160ms = new SrsPps(); |
113 |
| -SrsPps* _srs_pps_timer_s = new SrsPps(); |
| 105 | +__thread SrsPps* _srs_pps_clock_15ms = NULL; |
| 106 | +__thread SrsPps* _srs_pps_clock_20ms = NULL; |
| 107 | +__thread SrsPps* _srs_pps_clock_25ms = NULL; |
| 108 | +__thread SrsPps* _srs_pps_clock_30ms = NULL; |
| 109 | +__thread SrsPps* _srs_pps_clock_35ms = NULL; |
| 110 | +__thread SrsPps* _srs_pps_clock_40ms = NULL; |
| 111 | +__thread SrsPps* _srs_pps_clock_80ms = NULL; |
| 112 | +__thread SrsPps* _srs_pps_clock_160ms = NULL; |
| 113 | +__thread SrsPps* _srs_pps_timer_s = NULL; |
114 | 114 |
|
115 | 115 | #if defined(SRS_DEBUG) && defined(SRS_DEBUG_STATS)
|
116 |
| -extern int _st_active_count; |
117 |
| -extern unsigned long long _st_stat_thread_run; |
118 |
| -extern unsigned long long _st_stat_thread_idle; |
119 |
| -extern unsigned long long _st_stat_thread_yield; |
120 |
| -extern unsigned long long _st_stat_thread_yield2; |
121 |
| -SrsPps* _srs_pps_thread_run = new SrsPps(); |
122 |
| -SrsPps* _srs_pps_thread_idle = new SrsPps(); |
123 |
| -SrsPps* _srs_pps_thread_yield = new SrsPps(); |
124 |
| -SrsPps* _srs_pps_thread_yield2 = new SrsPps(); |
| 116 | +extern __thread int _st_active_count; |
| 117 | +extern __thread unsigned long long _st_stat_thread_run; |
| 118 | +extern __thread unsigned long long _st_stat_thread_idle; |
| 119 | +extern __thread unsigned long long _st_stat_thread_yield; |
| 120 | +extern __thread unsigned long long _st_stat_thread_yield2; |
| 121 | +__thread SrsPps* _srs_pps_thread_run = NULL; |
| 122 | +__thread SrsPps* _srs_pps_thread_idle = NULL; |
| 123 | +__thread SrsPps* _srs_pps_thread_yield = NULL; |
| 124 | +__thread SrsPps* _srs_pps_thread_yield2 = NULL; |
125 | 125 | #endif
|
126 | 126 |
|
127 |
| -extern SrsPps* _srs_pps_objs_rtps; |
128 |
| -extern SrsPps* _srs_pps_objs_rraw; |
129 |
| -extern SrsPps* _srs_pps_objs_rfua; |
130 |
| -extern SrsPps* _srs_pps_objs_rbuf; |
131 |
| -extern SrsPps* _srs_pps_objs_msgs; |
132 |
| -extern SrsPps* _srs_pps_objs_rothers; |
| 127 | +extern __thread SrsPps* _srs_pps_objs_rtps; |
| 128 | +extern __thread SrsPps* _srs_pps_objs_rraw; |
| 129 | +extern __thread SrsPps* _srs_pps_objs_rfua; |
| 130 | +extern __thread SrsPps* _srs_pps_objs_rbuf; |
| 131 | +extern __thread SrsPps* _srs_pps_objs_msgs; |
| 132 | +extern __thread SrsPps* _srs_pps_objs_rothers; |
133 | 133 |
|
134 | 134 | ISrsHybridServer::ISrsHybridServer()
|
135 | 135 | {
|
|
0 commit comments