diff options
| -rw-r--r-- | core/jni/com_android_internal_os_Zygote.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/jni/com_android_internal_os_Zygote.cpp b/core/jni/com_android_internal_os_Zygote.cpp index cf96fe63f82c..0bed29b7ba28 100644 --- a/core/jni/com_android_internal_os_Zygote.cpp +++ b/core/jni/com_android_internal_os_Zygote.cpp @@ -193,7 +193,7 @@ static constexpr unsigned int STORAGE_DIR_CHECK_MAX_INTERVAL_US = 1000; * If it exceeds 2s, PROC_START_TIMEOUT_MSG will kill the starting app anyway, * so it's fine to assume max retries is 5 mins. */ -static constexpr int STORAGE_DIR_CHECK_TIMEOUT_US = 1000 * 60 * 5; +static constexpr int STORAGE_DIR_CHECK_TIMEOUT_US = 1000 * 1000 * 60 * 5; /** * A helper class containing accounting information for USAPs. |