OSDN Git Service

Track AArch64 changes from AOSP.
authorNarayan Kamath <narayan@google.com>
Thu, 16 Jan 2014 11:22:52 +0000 (11:22 +0000)
committerNarayan Kamath <narayan@google.com>
Thu, 16 Jan 2014 16:01:22 +0000 (16:01 +0000)
mPtr is now long, not int.

Change-Id: I75297cbef3571f8f0cc02a35a06c1bc1f4fbe416

core/java/android/os/MessageQueue.java

index 931afc1..7ca5d49 100644 (file)
@@ -129,7 +129,7 @@ public final class MessageQueue {
         // Return here if the message loop has already quit and been disposed.
         // This can happen if the application tries to restart a looper after quit
         // which is not supported.
-        final int ptr = mPtr;
+        final long ptr = mPtr;
         if (ptr == 0) {
             return null;
         }