diff options
Diffstat (limited to 'agent/protect.c')
-rw-r--r-- | agent/protect.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/agent/protect.c b/agent/protect.c index cdb39fd13..f037703d0 100644 --- a/agent/protect.c +++ b/agent/protect.c @@ -95,11 +95,13 @@ calibrate_get_time (struct calibrate_time_s *data) #ifdef HAVE_W32_SYSTEM # ifdef HAVE_W32CE_SYSTEM GetThreadTimes (GetCurrentThread (), + &data->creation_time, &data->exit_time, + &data->kernel_time, &data->user_time); # else GetProcessTimes (GetCurrentProcess (), -# endif &data->creation_time, &data->exit_time, &data->kernel_time, &data->user_time); +# endif #else struct tms tmp; |