Add -j to dex2oat.
Change-Id: I80f3f2605b8afcdf9adf9382716b041f10efa104
diff --git a/src/compiler.h b/src/compiler.h
index f5f8cfa..4822b9f 100644
--- a/src/compiler.h
+++ b/src/compiler.h
@@ -43,8 +43,7 @@
// enabled. "image_classes" lets the compiler know what classes it
// can assume will be in the image, with NULL implying all available
// classes.
- explicit Compiler(InstructionSet instruction_set,
- bool image,
+ explicit Compiler(InstructionSet instruction_set, bool image, size_t thread_count,
const std::set<std::string>* image_classes);
~Compiler();
@@ -169,7 +168,7 @@
InvokeStubTable compiled_invoke_stubs_;
bool image_;
-
+ size_t thread_count_;
uint64_t start_ns_;
const std::set<std::string>* image_classes_;