e_info: Modify a protocol trace's time log. real time to monotonic time 17/91517/2
authorJengHyun Kang <jhyuni.kang@samsung.com>
Mon, 10 Oct 2016 04:13:27 +0000 (13:13 +0900)
committerGwanglim Lee <gl77.lee@samsung.com>
Mon, 10 Oct 2016 04:55:11 +0000 (21:55 -0700)
Change-Id: I8b9cd2b67d1fc52db29b56656ac5c6495602fc24

src/bin/e_info_server.c

index ad968ce9d477c549d6e10f2187900264c60f125a..680270d24476c63f23577f36e7e2a74c361daa10 100644 (file)
@@ -1021,7 +1021,7 @@ _e_info_server_protocol_debug_func(struct wl_closure *closure, struct wl_resourc
    if (!log_fp_ptrace) return;
    if (wc) wl_client_get_credentials(wc, &client_pid, NULL, NULL);
 
-   clock_gettime(CLOCK_REALTIME, &tp);
+   clock_gettime(CLOCK_MONOTONIC, &tp);
    time = (tp.tv_sec * 1000000L) + (tp.tv_nsec / 1000);
 
    E_Info_Protocol_Log elog = {0,};