• R/O
  • HTTP
  • SSH
  • HTTPS

Commit

Frequently used words (click to add to your profile)

javac++androidlinuxc#windowsobjective-ccocoa誰得qtpythonphprubygameguibathyscaphec計画中(planning stage)翻訳omegatframeworktwitterdomtestvb.netdirectxゲームエンジンbtronarduinopreviewer

development


Commit MetaInfo

Revision99dbfcccc0b640a155e6e74d8d23527f7ff808c5 (tree)
Time2011-02-03 02:59:32
AuthorDavid 'Digit' Turner <digit@andr...>
CommiterAndroid Git Automerger

Log Message

am 8fa01f7d: am 442064f4: am fd2d786d: am 3f33b7b7: Merge "native_app_glue: fix APP_CMD_TERM_WINDOW pre-hook"

* commit '8fa01f7d54c5a8a8036b21428bacd1ea5022bf7f':

native_app_glue: fix APP_CMD_TERM_WINDOW pre-hook

Change Summary

Incremental Difference

--- a/ndk/sources/android/native_app_glue/android_native_app_glue.c
+++ b/ndk/sources/android/native_app_glue/android_native_app_glue.c
@@ -106,10 +106,7 @@ void android_app_pre_exec_cmd(struct android_app* android_app, int8_t cmd) {
106106
107107 case APP_CMD_TERM_WINDOW:
108108 LOGI("APP_CMD_TERM_WINDOW\n");
109- pthread_mutex_lock(&android_app->mutex);
110- android_app->window = NULL;
111109 pthread_cond_broadcast(&android_app->cond);
112- pthread_mutex_unlock(&android_app->mutex);
113110 break;
114111
115112 case APP_CMD_RESUME: