diff options
author | bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2012-12-03 14:54:59 +0000 |
---|---|---|
committer | bsalomon@google.com <bsalomon@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2012-12-03 14:54:59 +0000 |
commit | 42619d8df206b0bcd36d952909d972b8961e75de (patch) | |
tree | 2159fe1ee6ff0af5a35b0d0e4ee392735b5ad293 /include/utils | |
parent | 1d3c411f5e4d2ad31bc92b3a85957004329ac00d (diff) |
Rename SkTDLinkedList to SkTInternalLinked list, add some methods useful for forthcoming SkTLList.
Review URL: https://codereview.appspot.com/6858101
git-svn-id: http://skia.googlecode.com/svn/trunk@6643 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'include/utils')
-rw-r--r-- | include/utils/SkThreadPool.h | 12 |
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. }; |