Skip to content

Commit 22660f3

Browse files
Niels MöllerCommit Bot
Niels Möller
authored and
Commit Bot
committed
Delete windows-specific stop flag in PlatformThread
Followup to https://webrtc-review.googlesource.com/c/src/+/134642 Bug: webrtc:10594 Change-Id: I9935f861a1ab5d9e05a5317243e895cf4f797ab6 Reviewed-on: https://webrtc-review.googlesource.com/c/src/+/135103 Reviewed-by: Tommi <[email protected]> Commit-Queue: Niels Moller <[email protected]> Cr-Commit-Position: refs/heads/master@{#27857}
1 parent 4487ac4 commit 22660f3

File tree

2 files changed

+1
-19
lines changed

2 files changed

+1
-19
lines changed

rtc_base/platform_thread.cc

+1-18
Original file line numberDiff line numberDiff line change
@@ -21,11 +21,7 @@
2121

2222
namespace rtc {
2323
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)
2925
struct ThreadAttributes {
3026
ThreadAttributes() { pthread_attr_init(&attr); }
3127
~ThreadAttributes() { pthread_attr_destroy(&attr); }
@@ -76,8 +72,6 @@ void PlatformThread::Start() {
7672
RTC_DCHECK(thread_checker_.IsCurrent());
7773
RTC_DCHECK(!thread_) << "Thread already started?";
7874
#if defined(WEBRTC_WIN)
79-
stop_ = false;
80-
8175
// See bug 2902 for background on STACK_SIZE_PARAM_IS_A_RESERVATION.
8276
// Set the reserved stack stack size to 1M, which is the default on Windows
8377
// and Linux.
@@ -116,17 +110,6 @@ void PlatformThread::Stop() {
116110
return;
117111

118112
#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-
}
130113
WaitForSingleObject(thread_, INFINITE);
131114
CloseHandle(thread_);
132115
thread_ = nullptr;

rtc_base/platform_thread.h

-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,6 @@ class PlatformThread {
8989
#if defined(WEBRTC_WIN)
9090
static DWORD WINAPI StartThread(void* param);
9191

92-
bool stop_ = false;
9392
HANDLE thread_ = nullptr;
9493
DWORD thread_id_ = 0;
9594
#else

0 commit comments

Comments
 (0)