Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(53)

Unified Diff: webrtc/base/task_queue.h

Issue 2750853002: TaskQueue[Win] DOS handling (Closed)
Patch Set: Cleanup Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | webrtc/base/task_queue_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/base/task_queue.h
diff --git a/webrtc/base/task_queue.h b/webrtc/base/task_queue.h
index c5229b1fe25addd14b4fee55259d0b1665c48857..15b31aa71771c62390fd93e558daed2c4c28f180 100644
--- a/webrtc/base/task_queue.h
+++ b/webrtc/base/task_queue.h
@@ -13,6 +13,7 @@
#include <list>
#include <memory>
+#include <queue>
#if defined(WEBRTC_MAC) && !defined(WEBRTC_BUILD_LIBEVENT)
#include <dispatch/dispatch.h>
@@ -274,6 +275,7 @@ class LOCKABLE TaskQueue {
QueueContext* const context_;
#elif defined(WEBRTC_WIN)
class ThreadState;
+ void RunPendingTasks();
static void ThreadMain(void* context);
class WorkerThread : public PlatformThread {
@@ -289,6 +291,9 @@ class LOCKABLE TaskQueue {
}
};
WorkerThread thread_;
+ rtc::CriticalSection pending_lock_;
+ std::queue<std::unique_ptr<QueuedTask>> pending_ GUARDED_BY(pending_lock_);
+ HANDLE in_queue_;
#else
#error not supported.
#endif
« no previous file with comments | « no previous file | webrtc/base/task_queue_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698