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

Unified Diff: runtime/platform/thread_macos.h

Issue 9141005: Change the thread interface in runtime/platform and use it starting all threads (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Addressed review comments from asiva@ Created 8 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: runtime/platform/thread_macos.h
diff --git a/runtime/platform/thread_macos.h b/runtime/platform/thread_macos.h
index a836dc31aa4f02ccfd1662386f3400e5913382c9..c2b30595c15188bbe1e4195650e7fd5108376280 100644
--- a/runtime/platform/thread_macos.h
+++ b/runtime/platform/thread_macos.h
@@ -15,22 +15,6 @@
namespace dart {
-class ThreadData {
- private:
- ThreadData() {}
- ~ThreadData() {}
-
- pthread_t* tid() { return &tid_; }
-
- pthread_t tid_;
-
- friend class Thread;
-
- DISALLOW_ALLOCATION();
- DISALLOW_COPY_AND_ASSIGN(ThreadData);
-};
-
-
class MutexData {
private:
MutexData() {}

Powered by Google App Engine
This is Rietveld 408576698