OLD | NEW |
(Empty) | |
| 1 // Copyright 2014 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #include "config.h" |
| 6 #include "platform/WebThreadSupportingGC.h" |
| 7 |
| 8 namespace blink { |
| 9 |
| 10 PassOwnPtr<WebThreadSupportingGC> WebThreadSupportingGC::create(const char* name
) |
| 11 { |
| 12 return adoptPtr(new WebThreadSupportingGC(name)); |
| 13 } |
| 14 |
| 15 WebThreadSupportingGC::WebThreadSupportingGC(const char* name) |
| 16 : m_thread(adoptPtr(blink::Platform::current()->createThread(name))) |
| 17 { |
| 18 } |
| 19 |
| 20 void WebThreadSupportingGC::attachGC() |
| 21 { |
| 22 m_pendingGCRunner = adoptPtr(new PendingGCRunner); |
| 23 m_messageLoopInterruptor = adoptPtr(new MessageLoopInterruptor(&platformThre
ad())); |
| 24 platformThread().addTaskObserver(m_pendingGCRunner.get()); |
| 25 ThreadState::attach(); |
| 26 ThreadState::current()->addInterruptor(m_messageLoopInterruptor.get()); |
| 27 } |
| 28 |
| 29 void WebThreadSupportingGC::detachGC() |
| 30 { |
| 31 ThreadState::current()->removeInterruptor(m_messageLoopInterruptor.get()); |
| 32 ThreadState::detach(); |
| 33 platformThread().removeTaskObserver(m_pendingGCRunner.get()); |
| 34 m_pendingGCRunner = nullptr; |
| 35 m_messageLoopInterruptor = nullptr; |
| 36 } |
| 37 |
| 38 } // namespace blink |
OLD | NEW |