| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2015 Google Inc. | 2 * Copyright 2015 Google Inc. |
| 3 * | 3 * |
| 4 * Use of this source code is governed by a BSD-style license that can be | 4 * Use of this source code is governed by a BSD-style license that can be |
| 5 * found in the LICENSE file. | 5 * found in the LICENSE file. |
| 6 */ | 6 */ |
| 7 | 7 |
| 8 #include "Test.h" | 8 #include "Test.h" |
| 9 #include "SkOncePtr.h" | 9 #include "SkOncePtr.h" |
| 10 #include "SkTaskGroup.h" | 10 #include "SkTaskGroup.h" |
| (...skipping 10 matching lines...) Expand all Loading... |
| 21 SkAtomic<int> force_a_race(sk_num_cores()); | 21 SkAtomic<int> force_a_race(sk_num_cores()); |
| 22 | 22 |
| 23 sk_parallel_for(sk_num_cores()*4, [&](size_t) { | 23 sk_parallel_for(sk_num_cores()*4, [&](size_t) { |
| 24 force_a_race.fetch_add(-1); | 24 force_a_race.fetch_add(-1); |
| 25 while (force_a_race.load() > 0); | 25 while (force_a_race.load() > 0); |
| 26 | 26 |
| 27 int* n = once.get(create); | 27 int* n = once.get(create); |
| 28 REPORTER_ASSERT(r, *n == 5); | 28 REPORTER_ASSERT(r, *n == 5); |
| 29 }); | 29 }); |
| 30 REPORTER_ASSERT(r, calls.load() == 1); | 30 REPORTER_ASSERT(r, calls.load() == 1); |
| 31 | |
| 32 delete (int*)once; | |
| 33 } | 31 } |
| 34 | 32 |
| 35 /* TODO(mtklein): next CL | 33 /* TODO(mtklein): next CL |
| 36 | 34 |
| 37 SK_DECLARE_STATIC_ONCE(once_noptr); | 35 SK_DECLARE_STATIC_ONCE(once_noptr); |
| 38 DEF_TEST(OnceNoPtr, r) { | 36 DEF_TEST(OnceNoPtr, r) { |
| 39 static SkAtomic<int> calls(0); | 37 static SkAtomic<int> calls(0); |
| 40 | 38 |
| 41 SkAtomic<int> force_a_race(sk_num_cores()); | 39 SkAtomic<int> force_a_race(sk_num_cores()); |
| 42 sk_parallel_for(sk_num_cores()*4, [&](size_t) { | 40 sk_parallel_for(sk_num_cores()*4, [&](size_t) { |
| 43 force_a_race.fetch_add(-1); | 41 force_a_race.fetch_add(-1); |
| 44 while (force_a_race.load() > 0); | 42 while (force_a_race.load() > 0); |
| 45 | 43 |
| 46 SkOnce(&once_noptr, [&] { calls.fetch_add(1); }); | 44 SkOnce(&once_noptr, [&] { calls.fetch_add(1); }); |
| 47 }); | 45 }); |
| 48 REPORTER_ASSERT(r, calls.load() == 1); | 46 REPORTER_ASSERT(r, calls.load() == 1); |
| 49 } | 47 } |
| 50 */ | 48 */ |
| OLD | NEW |