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

Unified Diff: src/utils/SkCondVar.h

Issue 1192573003: Add and use SkSemaphore (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: typo Created 5 years, 6 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 | « src/core/SkTaskGroup.cpp ('k') | src/utils/SkCondVar.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/utils/SkCondVar.h
diff --git a/src/utils/SkCondVar.h b/src/utils/SkCondVar.h
deleted file mode 100644
index 0a9f94f0abebf44dcc322ad1cbfe59bf09907770..0000000000000000000000000000000000000000
--- a/src/utils/SkCondVar.h
+++ /dev/null
@@ -1,74 +0,0 @@
-/*
- * Copyright 2012 Google Inc.
- *
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-#ifndef SkCondVar_DEFINED
-#define SkCondVar_DEFINED
-
-#include "SkTypes.h"
-
-#ifdef SK_BUILD_FOR_WIN32
- #include <windows.h>
-#else
- #include <pthread.h>
-#endif
-
-/**
- * Condition variable for blocking access to shared data from other threads and
- * controlling which threads are awake.
- *
- * Currently only supported on platforms with posix threads and Windows Vista and above.
- */
-class SkCondVar {
-public:
- /** Returns true if it makes sense to create and use SkCondVars.
- * You _MUST_ call this method and it must return true before creating any SkCondVars.
- */
- static bool Supported();
-
- SkCondVar();
- ~SkCondVar();
-
- /**
- * Lock a mutex. Must be done before calling the other functions on this object.
- */
- void lock();
-
- /**
- * Unlock the mutex.
- */
- void unlock();
-
- /**
- * Pause the calling thread. Will be awoken when signal() or broadcast() is called.
- * Must be called while lock() is held (but gives it up while waiting). Once awoken,
- * the calling thread will hold the lock once again.
- */
- void wait();
-
- /**
- * Wake one thread waiting on this condition. Must be called while lock()
- * is held.
- */
- void signal();
-
- /**
- * Wake all threads waiting on this condition. Must be called while lock()
- * is held.
- */
- void broadcast();
-
-private:
-#ifdef SK_BUILD_FOR_WIN32
- CRITICAL_SECTION fCriticalSection;
- CONDITION_VARIABLE fCondition;
-#else
- pthread_mutex_t fMutex;
- pthread_cond_t fCond;
-#endif
-};
-
-#endif
« no previous file with comments | « src/core/SkTaskGroup.cpp ('k') | src/utils/SkCondVar.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698