diff options
| author | 2011-04-19 15:37:32 -0700 | |
|---|---|---|
| committer | 2011-04-19 15:37:32 -0700 | |
| commit | 96dfedc55cab10922c677e3c8da11dc51e80b30c (patch) | |
| tree | c8a0bed434cc7e334a857e543223587adc388da0 /libs/utils/Looper.cpp | |
| parent | 3426853d2c2f71a3bc2e3b59290dbef24c10cc7c (diff) | |
| parent | 4815f2a6ada7941680b29581d5cf5a5ed168f618 (diff) | |
Merge "Initial checkin of spot presentation for touchpad gestures."
Diffstat (limited to 'libs/utils/Looper.cpp')
| -rw-r--r-- | libs/utils/Looper.cpp | 3 |
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, |