aboutsummaryrefslogtreecommitdiff
path: root/src/share/back/debugLoop.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/share/back/debugLoop.c')
-rw-r--r--src/share/back/debugLoop.c12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/share/back/debugLoop.c b/src/share/back/debugLoop.c
index e9e0e583b..9d3e9b914 100644
--- a/src/share/back/debugLoop.c
+++ b/src/share/back/debugLoop.c
@@ -37,8 +37,6 @@
// ANDROID-CHANGED: Needed for vmDebug_onDisconnect, vmDebug_notifyDebuggerActivityStart &
// vmDebug_notifyDebuggerActivityEnd.
#include "vmDebug.h"
-// ANDROID-CHANGED: Needed for sending ART timings
-#include "timing.h"
static void JNICALL reader(jvmtiEnv* jvmti_env, JNIEnv* jni_env, void* arg);
@@ -68,7 +66,6 @@ lastCommand(jdwpCmdPacket *cmd)
}
}
-
void
debugLoop_initialize(void)
{
@@ -127,11 +124,6 @@ debugLoop_run(void)
PacketOutputStream out;
CommandHandler func;
- // ANDROID-CHANGED: To be able to send cmd processing time
- // periodically, we notify the timing system of when they
- // start. This "startCmd" MUST be paired by a "endCmd".
- timings_startCmd(cmd->id, cmd->cmdSet, cmd->cmd);
-
/* Should reply be sent to sender.
* For error handling, assume yes, since
* only VM/exit does not reply
@@ -202,10 +194,6 @@ debugLoop_run(void)
outStream_destroy(&out);
shouldListen = !lastCommand(cmd);
-
- // ANDROID-CHANGED: Let the timing system know that the cmd
- // was fully processed. This may trigger a flush.
- timings_endCmd();
}
}
threadControl_onDisconnect();