File tree 2 files changed +1
-19
lines changed
2 files changed +1
-19
lines changed Original file line number Diff line number Diff line change 21
21
22
22
namespace rtc {
23
23
namespace {
24
- #if defined(WEBRTC_WIN)
25
- void CALLBACK RaiseFlag (ULONG_PTR param) {
26
- *reinterpret_cast <bool *>(param) = true ;
27
- }
28
- #else
24
+ #if !defined(WEBRTC_WIN)
29
25
struct ThreadAttributes {
30
26
ThreadAttributes () { pthread_attr_init (&attr); }
31
27
~ThreadAttributes () { pthread_attr_destroy (&attr); }
@@ -76,8 +72,6 @@ void PlatformThread::Start() {
76
72
RTC_DCHECK (thread_checker_.IsCurrent ());
77
73
RTC_DCHECK (!thread_) << " Thread already started?" ;
78
74
#if defined(WEBRTC_WIN)
79
- stop_ = false ;
80
-
81
75
// See bug 2902 for background on STACK_SIZE_PARAM_IS_A_RESERVATION.
82
76
// Set the reserved stack stack size to 1M, which is the default on Windows
83
77
// and Linux.
@@ -116,17 +110,6 @@ void PlatformThread::Stop() {
116
110
return ;
117
111
118
112
#if defined(WEBRTC_WIN)
119
- // Set stop_ to |true| on the worker thread.
120
- bool queued = QueueAPC (&RaiseFlag, reinterpret_cast <ULONG_PTR>(&stop_));
121
- if (!queued) {
122
- // Queuing the APC can fail if the thread is being terminated. This should
123
- // return ERROR_GEN_FAILURE, though Wine returns ERROR_ACCESS_DENIED, so
124
- // allow for either.
125
- auto error = ::GetLastError ();
126
- if (error != ERROR_GEN_FAILURE && error != ERROR_ACCESS_DENIED) {
127
- RTC_CHECK (false ) << " Failed to QueueUserAPC, error: " << error;
128
- }
129
- }
130
113
WaitForSingleObject (thread_, INFINITE);
131
114
CloseHandle (thread_);
132
115
thread_ = nullptr ;
Original file line number Diff line number Diff line change @@ -89,7 +89,6 @@ class PlatformThread {
89
89
#if defined(WEBRTC_WIN)
90
90
static DWORD WINAPI StartThread (void * param);
91
91
92
- bool stop_ = false ;
93
92
HANDLE thread_ = nullptr ;
94
93
DWORD thread_id_ = 0 ;
95
94
#else
You can’t perform that action at this time.
0 commit comments