Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in / Register
Toggle navigation
M
Magisk
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Administrator
Magisk
Commits
90013e48
Commit
90013e48
authored
Jun 17, 2022
by
topjohnwu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Use AtomicBoolean
parent
4e2ecdb9
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
9 deletions
+5
-9
MagiskInstaller.kt
...n/java/com/topjohnwu/magisk/core/tasks/MagiskInstaller.kt
+5
-9
No files found.
app/src/main/java/com/topjohnwu/magisk/core/tasks/MagiskInstaller.kt
View file @
90013e48
...
...
@@ -37,6 +37,7 @@ import java.io.*
import
java.nio.ByteBuffer
import
java.security.SecureRandom
import
java.util.*
import
java.util.concurrent.atomic.AtomicBoolean
import
java.util.zip.ZipEntry
import
java.util.zip.ZipFile
...
...
@@ -420,20 +421,15 @@ abstract class MagiskInstallImpl protected constructor(
protected
abstract
suspend
fun
operations
():
Boolean
open
suspend
fun
exec
():
Boolean
{
synchronized
(
Companion
)
{
if
(
haveActiveSession
)
return
false
haveActiveSession
=
true
}
if
(
haveActiveSession
.
getAndSet
(
true
))
return
false
val
result
=
withContext
(
Dispatchers
.
IO
)
{
operations
()
}
synchronized
(
Companion
)
{
haveActiveSession
=
false
}
haveActiveSession
.
set
(
false
)
return
result
}
companion
object
{
private
var
haveActiveSession
=
false
private
var
haveActiveSession
=
AtomicBoolean
(
false
)
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment