Skip to content

Commit

Permalink
Further reduce parallelization (Huawei *sigh*)
Browse files Browse the repository at this point in the history
  • Loading branch information
d4rken committed Nov 17, 2022
1 parent f472428 commit 7a4fd1b
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions app/src/main/java/eu/darken/myperm/common/IPCFunnel.kt
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,8 @@ class IPCFunnel @Inject constructor(

private val execLock = Semaphore(
when {
hasApiLevel(31) -> 4
hasApiLevel(29) -> 3
hasApiLevel(26) -> 2
hasApiLevel(31) -> 3
hasApiLevel(29) -> 2
else -> 1
}.also { log { "IPCFunnel init with parallelization set to $it" } }
)
Expand Down

0 comments on commit 7a4fd1b

Please sign in to comment.