のねのBlog

パソコンの問題や、ソフトウェアの開発で起きた問題など書いていきます。よろしくお願いします^^。

VM exiting with result code

    885 void AndroidRuntime::exit(int code)
    886 {
    887     if (mExitWithoutCleanup) {
    888         ALOGI("VM exiting with result code %d, cleanup skipped.", code);
    889         ::_exit(code);
    890     } else {
    891         ALOGI("VM exiting with result code %d.", code);
    892         onExit(code);
    893         ::exit(code);
    894     }
    895 }