| Index: tests/AtomicTest.cpp | 
| diff --git a/tests/AtomicTest.cpp b/tests/AtomicTest.cpp | 
| index e9db3f093dd2271155887909113b8a8a60a4ee47..530fba79d55129d6f599b67156b9bf59549a100c 100644 | 
| --- a/tests/AtomicTest.cpp | 
| +++ b/tests/AtomicTest.cpp | 
| @@ -13,15 +13,14 @@ | 
| struct AddInfo { | 
| int32_t valueToAdd; | 
| int timesToAdd; | 
| -    unsigned int processorAffinity; | 
| }; | 
|  | 
| static int32_t base = 0; | 
|  | 
| static AddInfo gAdds[] = { | 
| -    { 3, 100, 23 }, | 
| -    { 2, 200, 2 }, | 
| -    { 7, 150, 17 }, | 
| +    { 3, 100 }, | 
| +    { 2, 200 }, | 
| +    { 7, 150 }, | 
| }; | 
|  | 
| static void addABunchOfTimes(void* data) { | 
| @@ -40,7 +39,6 @@ DEF_TEST(Atomic, reporter) { | 
| // Start the threads | 
| for (size_t i = 0; i < SK_ARRAY_COUNT(gAdds); i++) { | 
| threads[i] = new SkThread(addABunchOfTimes, &gAdds[i]); | 
| -        threads[i]->setProcessorAffinity(gAdds[i].processorAffinity); | 
| threads[i]->start(); | 
| } | 
|  | 
|  |