diff options
| author | Brian Anderson <banderson@mozilla.com> | 2011-08-10 12:57:53 -0700 |
|---|---|---|
| committer | Brian Anderson <banderson@mozilla.com> | 2011-08-10 13:02:31 -0700 |
| commit | 0cd607bcbdc70d3d7ccefd5faf830cc8e5d68c86 (patch) | |
| tree | 0e531d1593e88a8dd3e3f783d16257568652cf93 /src/rt/rust_scheduler.cpp | |
| parent | f6ad0514087f985ce1c1aad126b28b8e17e2e005 (diff) | |
| download | rust-0cd607bcbdc70d3d7ccefd5faf830cc8e5d68c86.tar.gz rust-0cd607bcbdc70d3d7ccefd5faf830cc8e5d68c86.zip | |
rt: Shutdown gracefully on failure
When the kernel fails, kill all tasks and wait for the schedulers to stop instead of just exiting. I'm sure there are tons of lurking issues here but this is enough to fail without leaking (at least in the absence of cleanups).
Diffstat (limited to 'src/rt/rust_scheduler.cpp')
| -rw-r--r-- | src/rt/rust_scheduler.cpp | 16 |
1 files changed, 15 insertions, 1 deletions
diff --git a/src/rt/rust_scheduler.cpp b/src/rt/rust_scheduler.cpp index 30504319b30..33e607a85e1 100644 --- a/src/rt/rust_scheduler.cpp +++ b/src/rt/rust_scheduler.cpp @@ -71,7 +71,21 @@ rust_scheduler::fail() { name, this); I(this, kernel->rval == 0); kernel->rval = 1; - exit(1); + kernel->fail(); +} + +void +rust_scheduler::kill_all_tasks() { + I(this, !lock.lock_held_by_current_thread()); + scoped_lock with(lock); + + for (size_t i = 0; i < running_tasks.length(); i++) { + running_tasks[i]->kill(); + } + + for (size_t i = 0; i < blocked_tasks.length(); i++) { + blocked_tasks[i]->kill(); + } } size_t |
