| Index: runtime/bin/dbg_message.cc
|
| ===================================================================
|
| --- runtime/bin/dbg_message.cc (revision 37971)
|
| +++ runtime/bin/dbg_message.cc (working copy)
|
| @@ -1041,7 +1041,7 @@
|
| void DbgMsgQueue::AddMessage(int32_t cmd_idx,
|
| const char* start,
|
| const char* end,
|
| - int debug_fd) {
|
| + intptr_t debug_fd) {
|
| if ((end > start) && ((end - start) < kMaxInt32)) {
|
| MonitorLocker ml(&msg_queue_lock_);
|
| DbgMessage* msg = new DbgMessage(cmd_idx, start, end, debug_fd);
|
| @@ -1235,7 +1235,7 @@
|
| int32_t cmd_idx,
|
| const char* start,
|
| const char* end,
|
| - int debug_fd) {
|
| + intptr_t debug_fd) {
|
| MutexLocker ml(msg_queue_list_lock_);
|
| DbgMsgQueue* queue = DbgMsgQueueList::GetIsolateMsgQueueLocked(isolate_id);
|
| if (queue != NULL) {
|
|
|