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

Unified Diff: vm/isolate.h

Issue 10797021: - Start using the collected store buffer entries to find (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/runtime/
Patch Set: Created 8 years, 5 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
« no previous file with comments | « vm/heap.cc ('k') | vm/object.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: vm/isolate.h
===================================================================
--- vm/isolate.h (revision 9784)
+++ vm/isolate.h (working copy)
@@ -156,8 +156,12 @@
enum {
kApiInterrupt = 0x1, // An interrupt from Dart_InterruptIsolate.
kMessageInterrupt = 0x2, // An interrupt to process an out of band message.
+ kStoreBufferInterrupt = 0x4, // An interrupt to process the store buffer.
- kInterruptsMask = kApiInterrupt | kMessageInterrupt,
+ kInterruptsMask =
+ kApiInterrupt |
+ kMessageInterrupt |
+ kStoreBufferInterrupt,
};
void ScheduleInterrupts(uword interrupt_bits);
« no previous file with comments | « vm/heap.cc ('k') | vm/object.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698