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
60f3d62f
Commit
60f3d62f
authored
Feb 24, 2021
by
topjohnwu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Proper synchronization
parent
e613855a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
4 deletions
+6
-4
MagiskInstaller.kt
...n/java/com/topjohnwu/magisk/core/tasks/MagiskInstaller.kt
+6
-4
No files found.
app/src/main/java/com/topjohnwu/magisk/core/tasks/MagiskInstaller.kt
View file @
60f3d62f
...
...
@@ -43,8 +43,6 @@ import java.security.SecureRandom
import
java.util.*
import
java.util.zip.ZipFile
private
var
haveActiveSession
:
Boolean
=
false
abstract
class
MagiskInstallImpl
protected
constructor
(
protected
val
console
:
MutableList
<
String
>
=
NOPList
.
getInstance
(),
private
val
logs
:
MutableList
<
String
>
=
NOPList
.
getInstance
()
...
...
@@ -418,17 +416,21 @@ abstract class MagiskInstallImpl protected constructor(
protected
abstract
suspend
fun
operations
():
Boolean
open
suspend
fun
exec
():
Boolean
{
synchronized
(
haveActiveSess
ion
)
{
synchronized
(
Compan
ion
)
{
if
(
haveActiveSession
)
return
false
haveActiveSession
=
true
}
val
result
=
withContext
(
Dispatchers
.
IO
)
{
operations
()
}
synchronized
(
haveActiveSess
ion
)
{
synchronized
(
Compan
ion
)
{
haveActiveSession
=
false
}
return
result
}
companion
object
{
private
var
haveActiveSession
=
false
}
}
abstract
class
MagiskInstaller
(
...
...
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