diff options
Diffstat (limited to 'include/android_runtime/AndroidRuntime.h')
| -rw-r--r-- | include/android_runtime/AndroidRuntime.h | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/include/android_runtime/AndroidRuntime.h b/include/android_runtime/AndroidRuntime.h index 99ab2f0b733e..09f0de1e64d3 100644 --- a/include/android_runtime/AndroidRuntime.h +++ b/include/android_runtime/AndroidRuntime.h @@ -87,7 +87,7 @@ public:      virtual void onExit(int code);      /** create a new thread that is visible from Java */ -    static void createJavaThread(const char* name, void (*start)(void *), +    static android_thread_id_t createJavaThread(const char* name, void (*start)(void *),          void* arg);      /** return a pointer to the VM running in this process */ @@ -98,6 +98,7 @@ public:  private:      static int startReg(JNIEnv* env); +    void parseExtraOpts(char* extraOptsBuf);      int startVm(JavaVM** pJavaVM, JNIEnv** pEnv);      Vector<JavaVMOption> mOptions; | 
