Side by Side Diff
Use n/p to move between diff chunks; N/P to move between comments.
Draft comments are only viewable by you.
Keyboard Shortcuts
File
u
:
up to issue
j
/
k
:
jump to file after / before current file
J
/
K
:
jump to next file with a comment after / before current file
Side-by-side diff
i
:
toggle intra-line diffs
e
:
expand all comments
c
:
collapse all comments
s
:
toggle showing all comments
n
/
p
:
next / previous diff chunk or comment
N
/
P
:
next / previous comment
<Up>
/
<Down>
:
next / previous line
Issue
u
:
up to list of issues
j
/
k
:
jump to patch after / before current patch
o
/
<Enter>
:
open current patch in side-by-side view
i
:
open current patch in unified diff view
Issue List
j
/
k
:
jump to issue after / before current issue
o
/
<Enter>
:
open current issue
Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr)
|
Please choose your nickname with
Settings
|
Help
|
Chromium Project
|
Gerrit Changes
|
Sign out
(128)
Issues
Search
My Issues
|
Starred
Open
|
Closed
|
All
Side by Side Diff: runtime/tests/vm/dart/spawn_infinite_loop_test.dart
Issue
1270323002
:
Revert VM thread cleanup (Closed)
Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set:
Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Draft comments are only viewable by you.
Context:
3 lines
10 lines
25 lines
50 lines
75 lines
100 lines
Whole file
Column Width:
Tab Spaces:
Jump to:
runtime/bin/dbg_message.cc
runtime/bin/gen_snapshot.cc
runtime/bin/main.cc
runtime/bin/process.cc
runtime/bin/run_vm_tests.cc
runtime/bin/vmservice/vmservice_io.dart
runtime/include/dart_api.h
runtime/tests/vm/dart/spawn_infinite_loop_test.dart
runtime/tests/vm/vm.status
runtime/vm/cpuinfo_test.cc
runtime/vm/custom_isolate_test.cc
runtime/vm/dart.cc
runtime/vm/dart_api_impl.cc
runtime/vm/debugger_api_impl_test.cc
runtime/vm/isolate.h
runtime/vm/isolate.cc
runtime/vm/message_handler.cc
runtime/vm/service_isolate.h
runtime/vm/service_isolate.cc
runtime/vm/thread_pool.h
runtime/vm/thread_pool.cc
runtime/vm/thread_pool_test.cc
runtime/vm/verified_memory_test.cc
tests/isolate/nested_spawn2_test.dart
tests/isolate/nested_spawn_test.dart
View unified diff
|
Download patch
« no previous file with comments
|
« runtime/include/dart_api.h
('k') |
runtime/tests/vm/vm.status »
('j') |
no next file with comments »
Toggle Intra-line Diffs
('i') |
Expand Comments
('e') |
Collapse Comments
('c') |
Show Comments
Hide Comments
('s')
OLD
NEW
(Empty)
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
3
// BSD-style license that can be found in the LICENSE file.
4
5
import 'dart:isolate';
6
7
// This test ensures that the VM can kill the spawned isolate during VM
8
// shutdown even when the isolate is in an infinite loop and will not finish
9
// on its own.
10
11
void loop(msg) {
12
while (true) {}
13
throw "Unreachable";
14
}
15
16
void main() {
17
Isolate.spawn(loop, []);
18
}
OLD
NEW
« no previous file with comments
|
« runtime/include/dart_api.h
('k') |
runtime/tests/vm/vm.status »
('j') |
no next file with comments »
Issue 1270323002: Revert VM thread cleanup (Closed)
Created 5 years, 4 months ago by zra
Modified 5 years, 4 months ago
Reviewers: turnidge, Ivan Posva
Base URL: git@github.com:dart-lang/sdk.git@master
Comments: 0
This is Rietveld
408576698