Index: include/libplatform/libplatform.h |
diff --git a/include/libplatform/libplatform.h b/include/libplatform/libplatform.h |
new file mode 100644 |
index 0000000000000000000000000000000000000000..a6d468e60bee4f6cd76d1fe00032f136770310b0 |
--- /dev/null |
+++ b/include/libplatform/libplatform.h |
@@ -0,0 +1,27 @@ |
+// Copyright 2014 the V8 project authors. All rights reserved. |
+// Use of this source code is governed by a BSD-style license that can be |
+// found in the LICENSE file. |
+ |
+#ifndef V8_LIBPLATFORM_LIBPLATFORM_H_ |
+#define V8_LIBPLATFORM_LIBPLATFORM_H_ |
+ |
+#include "include/v8-platform.h" |
+ |
+namespace v8 { |
+namespace platform { |
+ |
+/** |
+ * Returns a new instance of the default v8::Platform implementation. |
+ * |
+ * The caller will take ownership of the returned pointer. |thread_pool_size| |
+ * is the number of worker threads to allocate for background jobs. If a value |
+ * of zero is passed, a suitable default based on the current number of |
+ * processors online will be chosen. |
+ */ |
+v8::Platform* CreateDefaultPlatform(int thread_pool_size); |
+ |
+ |
+} // namespace platform |
+} // namespace v8 |
+ |
+#endif // V8_LIBPLATFORM_LIBPLATFORM_H_ |