aboutsummaryrefslogtreecommitdiffhomepage
path: root/bench/MutexBench.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'bench/MutexBench.cpp')
-rw-r--r--bench/MutexBench.cpp14
1 files changed, 4 insertions, 10 deletions
diff --git a/bench/MutexBench.cpp b/bench/MutexBench.cpp
index d96f3f6600..5a7058d5e0 100644
--- a/bench/MutexBench.cpp
+++ b/bench/MutexBench.cpp
@@ -8,10 +8,6 @@
#include "SkThread.h"
class MutexBench : public SkBenchmark {
- enum {
- N = SkBENCHLOOP(80),
- M = SkBENCHLOOP(200)
- };
public:
MutexBench(void* param) : INHERITED(param) {
fIsRendering = false;
@@ -22,12 +18,10 @@ protected:
}
virtual void onDraw(SkCanvas*) {
- for (int i = 0; i < N; i++) {
- SK_DECLARE_STATIC_MUTEX(mu);
- for (int j = 0; j < M; j++) {
- mu.acquire();
- mu.release();
- }
+ SK_DECLARE_STATIC_MUTEX(mu);
+ for (int i = 0; i < this->getLoops(); i++) {
+ mu.acquire();
+ mu.release();
}
}