summaryrefslogtreecommitdiff
path: root/libs/utils
diff options
context:
space:
mode:
author Jeff Brown <jeffbrown@google.com> 2011-05-25 14:43:34 -0700
committer Android Git Automerger <android-git-automerger@android.com> 2011-05-25 14:43:34 -0700
commit01fdb1bb41dbdfa8366f4d957ef09ba1a8c4a8bb (patch)
treeb2e51ea79ac3fb83fa91c0e9906817eacbd203cb /libs/utils
parent12e858f392a9feaf24afc7b19753b71b8c559b21 (diff)
parentd3e6d3e763544511a870b354f657600d25c42b91 (diff)
am 86ea1f5f: Initial checkin of spot presentation for touchpad gestures. (DO NOT MERGE)
* commit '86ea1f5f521981d075aef56f11693e4f3bc32fdb': Initial checkin of spot presentation for touchpad gestures. (DO NOT MERGE)
Diffstat (limited to 'libs/utils')
-rw-r--r--libs/utils/Looper.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/utils/Looper.cpp b/libs/utils/Looper.cpp
index d5dd126065..b54fb9dd73 100644
--- a/libs/utils/Looper.cpp
+++ b/libs/utils/Looper.cpp
@@ -662,7 +662,8 @@ void Looper::wakeAndLock() {
#endif
void Looper::sendMessage(const sp<MessageHandler>& handler, const Message& message) {
- sendMessageAtTime(LLONG_MIN, handler, message);
+ nsecs_t now = systemTime(SYSTEM_TIME_MONOTONIC);
+ sendMessageAtTime(now, handler, message);
}
void Looper::sendMessageDelayed(nsecs_t uptimeDelay, const sp<MessageHandler>& handler,