summaryrefslogtreecommitdiff
path: root/Source/Android/app/src/main/java
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Android/app/src/main/java')
-rw-r--r--Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/NativeLibrary.java21
1 files changed, 8 insertions, 13 deletions
diff --git a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/NativeLibrary.java b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/NativeLibrary.java
index b83a489256..19a5c39d2c 100644
--- a/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/NativeLibrary.java
+++ b/Source/Android/app/src/main/java/org/dolphinemu/dolphinemu/NativeLibrary.java
@@ -21,6 +21,7 @@ import org.dolphinemu.dolphinemu.utils.Log;
import java.lang.ref.WeakReference;
import java.util.LinkedHashMap;
+import java.util.concurrent.Semaphore;
/**
* Class which contains methods that interact
@@ -28,7 +29,7 @@ import java.util.LinkedHashMap;
*/
public final class NativeLibrary
{
- private static final Object sAlertMessageLock = new Object();
+ private static final Semaphore sAlertMessageSemaphore = new Semaphore(0);
private static boolean sIsShowingAlertMessage = false;
private static WeakReference<EmulationActivity> sEmulationActivity = new WeakReference<>(null);
@@ -492,15 +493,12 @@ public final class NativeLibrary
});
// Wait for the lock to notify that it is complete.
- synchronized (sAlertMessageLock)
+ try
+ {
+ sAlertMessageSemaphore.acquire();
+ }
+ catch (InterruptedException ignored)
{
- try
- {
- sAlertMessageLock.wait();
- }
- catch (Exception ignored)
- {
- }
}
if (yesNo)
@@ -520,10 +518,7 @@ public final class NativeLibrary
public static void NotifyAlertMessageLock()
{
- synchronized (sAlertMessageLock)
- {
- sAlertMessageLock.notify();
- }
+ sAlertMessageSemaphore.release();
}
public static void setEmulationActivity(EmulationActivity emulationActivity)