| OLD | NEW |
| 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 1 // Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 2 // for details. All rights reserved. Use of this source code is governed by a | 2 // for details. All rights reserved. Use of this source code is governed by a |
| 3 // BSD-style license that can be found in the LICENSE file. | 3 // BSD-style license that can be found in the LICENSE file. |
| 4 | 4 |
| 5 #include "vm/message_queue.h" | 5 #include "vm/message_queue.h" |
| 6 | 6 |
| 7 namespace dart { | 7 namespace dart { |
| 8 | 8 |
| 9 MessageQueue::~MessageQueue() { | 9 MessageQueue::~MessageQueue() { |
| 10 // Ensure that all pending messages have been released. | 10 // Ensure that all pending messages have been released. |
| (...skipping 72 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 83 } | 83 } |
| 84 | 84 |
| 85 | 85 |
| 86 void MessageQueue::FlushAll() { | 86 void MessageQueue::FlushAll() { |
| 87 MonitorLocker ml(&monitor_); | 87 MonitorLocker ml(&monitor_); |
| 88 PortMessage* cur = head_; | 88 PortMessage* cur = head_; |
| 89 head_ = NULL; | 89 head_ = NULL; |
| 90 tail_ = NULL; | 90 tail_ = NULL; |
| 91 while (cur != NULL) { | 91 while (cur != NULL) { |
| 92 PortMessage* next = cur->next_; | 92 PortMessage* next = cur->next_; |
| 93 delete next; | 93 delete cur; |
| 94 cur = next; | 94 cur = next; |
| 95 } | 95 } |
| 96 } | 96 } |
| 97 | 97 |
| 98 | 98 |
| 99 } // namespace dart | 99 } // namespace dart |
| OLD | NEW |