| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright 2012 Google Inc. | 2 * Copyright 2012 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 #ifndef SkThreadUtils_DEFINED | 8 #ifndef SkThreadUtils_DEFINED |
| 9 #define SkThreadUtils_DEFINED | 9 #define SkThreadUtils_DEFINED |
| 10 | 10 |
| (...skipping 14 matching lines...) Expand all Loading... |
| 25 * Starts the thread. Returns false if the thread could not be started. | 25 * Starts the thread. Returns false if the thread could not be started. |
| 26 */ | 26 */ |
| 27 bool start(); | 27 bool start(); |
| 28 | 28 |
| 29 /** | 29 /** |
| 30 * Waits for the thread to finish. | 30 * Waits for the thread to finish. |
| 31 * If the thread has not started, returns immediately. | 31 * If the thread has not started, returns immediately. |
| 32 */ | 32 */ |
| 33 void join(); | 33 void join(); |
| 34 | 34 |
| 35 /** | |
| 36 * SkThreads with an affinity for the same processor will attempt to run cac
he | |
| 37 * locally with each other. SkThreads with an affinity for different process
ors | |
| 38 * will attempt to run on different cores. Returns false if the request fail
ed. | |
| 39 */ | |
| 40 bool setProcessorAffinity(unsigned int processor); | |
| 41 | |
| 42 private: | 35 private: |
| 43 void* fData; | 36 void* fData; |
| 44 }; | 37 }; |
| 45 | 38 |
| 46 #endif | 39 #endif |
| OLD | NEW |