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

Side by Side Diff: runtime/vm/service_event.h

Issue 1756393002: Fix some service protocol isolate lifecycle races (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 4 years, 9 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 unified diff | Download patch
« no previous file with comments | « runtime/vm/service/service.md ('k') | runtime/vm/service_event.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2015, the Dart project authors. Please see the AUTHORS file 1 // Copyright (c) 2015, 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 #ifndef VM_SERVICE_EVENT_H_ 5 #ifndef VM_SERVICE_EVENT_H_
6 #define VM_SERVICE_EVENT_H_ 6 #define VM_SERVICE_EVENT_H_
7 7
8 #include "vm/debugger.h" 8 #include "vm/debugger.h"
9 9
10 class DebuggerEvent; 10 class DebuggerEvent;
(...skipping 10 matching lines...) Expand all
21 kIsolateExit, // Isolate has exited 21 kIsolateExit, // Isolate has exited
22 kIsolateUpdate, // Isolate identity information has changed 22 kIsolateUpdate, // Isolate identity information has changed
23 23
24 kServiceExtensionAdded, // A service extension was registered 24 kServiceExtensionAdded, // A service extension was registered
25 25
26 kPauseStart, // --pause-isolates-on-start 26 kPauseStart, // --pause-isolates-on-start
27 kPauseExit, // --pause-isolates-on-exit 27 kPauseExit, // --pause-isolates-on-exit
28 kPauseBreakpoint, 28 kPauseBreakpoint,
29 kPauseInterrupted, 29 kPauseInterrupted,
30 kPauseException, 30 kPauseException,
31 kNone, // isolate has not been made runnable yet.
31 kResume, 32 kResume,
32 kBreakpointAdded, 33 kBreakpointAdded,
33 kBreakpointResolved, 34 kBreakpointResolved,
34 kBreakpointRemoved, 35 kBreakpointRemoved,
35 kInspect, 36 kInspect,
36 kDebuggerSettingsUpdate, 37 kDebuggerSettingsUpdate,
37 38
38 kGC, 39 kGC,
39 40
40 kEmbedder, 41 kEmbedder,
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
201 const uint8_t* bytes_; 202 const uint8_t* bytes_;
202 intptr_t bytes_length_; 203 intptr_t bytes_length_;
203 LogRecord log_record_; 204 LogRecord log_record_;
204 ExtensionEvent extension_event_; 205 ExtensionEvent extension_event_;
205 int64_t timestamp_; 206 int64_t timestamp_;
206 }; 207 };
207 208
208 } // namespace dart 209 } // namespace dart
209 210
210 #endif // VM_SERVICE_EVENT_H_ 211 #endif // VM_SERVICE_EVENT_H_
OLDNEW
« no previous file with comments | « runtime/vm/service/service.md ('k') | runtime/vm/service_event.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698