Skip to content

Commit

Permalink
Merge pull request #197 from songzhangzhang/master
Browse files Browse the repository at this point in the history
解决arm64-v8a架构下alarm导致崩溃的问题
  • Loading branch information
garryyan authored Mar 29, 2017
2 parents c845396 + 0faa7f6 commit 0964fd8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions mars/comm/jni/OnAlarm.inl
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,6 @@

extern "C" JNIEXPORT void JNICALL Java_com_tencent_mars_comm_Alarm_onAlarm(JNIEnv *, jclass, jlong id)
{
xdebug2(TSF"BroadcastMessage seq:%_", (long long)id);
MessageQueue::BroadcastMessage(MessageQueue::GetDefMessageQueue(), MessageQueue::Message(KALARM_MESSAGETITLE, (long long)id, 0));
xdebug2(TSF"BroadcastMessage seq:%_", (int64_t)id);
MessageQueue::BroadcastMessage(MessageQueue::GetDefMessageQueue(), MessageQueue::Message(KALARM_MESSAGETITLE, (int64_t)id, 0));
}

0 comments on commit 0964fd8

Please # to comment.