aboutsummaryrefslogtreecommitdiffhomepage
path: root/include/utils/SkThreadPool.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/utils/SkThreadPool.h')
-rw-r--r--include/utils/SkThreadPool.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/utils/SkThreadPool.h b/include/utils/SkThreadPool.h
index a96f87b275..cc45fc2cd5 100644
--- a/include/utils/SkThreadPool.h
+++ b/include/utils/SkThreadPool.h
@@ -10,7 +10,7 @@
#include "SkCondVar.h"
#include "SkTDArray.h"
-#include "SkTDLinkedList.h"
+#include "SkTInternalLList.h"
class SkRunnable;
class SkThread;
@@ -36,13 +36,13 @@ public:
SkRunnable* fRunnable;
private:
- SK_DEFINE_DLINKEDLIST_INTERFACE(LinkedRunnable)
+ SK_DECLARE_INTERNAL_LLIST_INTERFACE(LinkedRunnable);
};
- SkTDLinkedList<LinkedRunnable> fQueue;
- SkCondVar fReady;
- SkTDArray<SkThread*> fThreads;
- bool fDone;
+ SkTInternalLList<LinkedRunnable> fQueue;
+ SkCondVar fReady;
+ SkTDArray<SkThread*> fThreads;
+ bool fDone;
static void Loop(void*); // Static because we pass in this.
};