diff options
| author | Eric Holk <eholk@mozilla.com> | 2011-06-21 18:08:34 -0700 |
|---|---|---|
| committer | Graydon Hoare <graydon@mozilla.com> | 2011-06-27 09:58:39 -0700 |
| commit | 6367bcf4276c06d41b0d66f10711ca3b076ae547 (patch) | |
| tree | 14f52a00319dcba17755330da3bcf978a53c0b3d /src/rt/rust_srv.cpp | |
| parent | 4d99bf9af2107523c01566968e889c4f1a5de49e (diff) | |
| download | rust-6367bcf4276c06d41b0d66f10711ca3b076ae547.tar.gz rust-6367bcf4276c06d41b0d66f10711ca3b076ae547.zip | |
Fixed a few concurrency bugs. Still not perfect, but overall it seems much more reliable.
Diffstat (limited to 'src/rt/rust_srv.cpp')
| -rw-r--r-- | src/rt/rust_srv.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/rt/rust_srv.cpp b/src/rt/rust_srv.cpp index 64befd6ee42..7f49b52019d 100644 --- a/src/rt/rust_srv.cpp +++ b/src/rt/rust_srv.cpp @@ -54,7 +54,8 @@ rust_srv::fatal(const char *expression, "fatal, '%s' failed, %s:%d %s", expression, file, (int)line, buf); log(msg); - exit(1); + abort(); + //exit(1); } void |
