Reviewers: Michael Starzinger,
Description:
Initialize sweeper thread array with NULL.
BUG=
Please review this at https://chromiumcodereview.appspot.com/12079076/
SVN Base: https://v8.googlecode.com/svn/branches/bleeding_edge
Affected files:
M src/isolate.cc
Index: src/isolate.cc
diff --git a/src/isolate.cc b/src/isolate.cc
index
2f893abb358b6e15178cd5fce9e7381ff7fa4a13..f1928cfed8a8fd260bc6cb0a81114931f4c80f86
100644
--- a/src/isolate.cc
+++ b/src/isolate.cc
@@ -1652,7 +1652,8 @@ Isolate::Isolate()
code_stub_interface_descriptors_(NULL),
context_exit_happened_(false),
deferred_handles_head_(NULL),
- optimizing_compiler_thread_(this) {
+ optimizing_compiler_thread_(this),
+ sweeper_thread_(NULL) {
TRACE_ISOLATE(constructor);
memset(isolate_addresses_, 0,
--
--
v8-dev mailing list
[email protected]
http://groups.google.com/group/v8-dev
---
You received this message because you are subscribed to the Google Groups "v8-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.