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

Side by Side Diff: src/utils/SkThreadUtils.h

Issue 1316233002: Style Change: NULL->nullptr (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 2015-08-27 (Thursday) 10:25:06 EDT Created 5 years, 3 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 unified diff | Download patch
« no previous file with comments | « src/utils/SkTextureCompressor_R11EAC.cpp ('k') | src/utils/SkThreadUtils_pthread.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
11 #include "SkTypes.h" 11 #include "SkTypes.h"
12 12
13 class SkThread : SkNoncopyable { 13 class SkThread : SkNoncopyable {
14 public: 14 public:
15 typedef void (*entryPointProc)(void*); 15 typedef void (*entryPointProc)(void*);
16 16
17 SkThread(entryPointProc entryPoint, void* data = NULL); 17 SkThread(entryPointProc entryPoint, void* data = nullptr);
18 18
19 /** 19 /**
20 * Non-virtual, do not subclass. 20 * Non-virtual, do not subclass.
21 */ 21 */
22 ~SkThread(); 22 ~SkThread();
23 23
24 /** 24 /**
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 /** 35 /**
36 * SkThreads with an affinity for the same processor will attempt to run cac he 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 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. 38 * will attempt to run on different cores. Returns false if the request fail ed.
39 */ 39 */
40 bool setProcessorAffinity(unsigned int processor); 40 bool setProcessorAffinity(unsigned int processor);
41 41
42 private: 42 private:
43 void* fData; 43 void* fData;
44 }; 44 };
45 45
46 #endif 46 #endif
OLDNEW
« no previous file with comments | « src/utils/SkTextureCompressor_R11EAC.cpp ('k') | src/utils/SkThreadUtils_pthread.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698