Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion iocore/aio/P_AIO.h
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ class AIOTestData : public Continuation

AIOTestData() : Continuation(new_ProxyMutex()), num_req(0), num_temp(0), num_queue(0)
{
start = ink_ink_get_hrtime();
start = ink_get_hrtime();
SET_HANDLER(&AIOTestData::ink_aio_stats);
}
};
Expand Down
4 changes: 2 additions & 2 deletions src/records/test_RecProcess.i
Original file line number Diff line number Diff line change
Expand Up @@ -342,7 +342,7 @@ struct RawStatCont:public Continuation
RecFloat stat_a, stat_d, stat_e;
// comments out here

hr_start = ink_ink_get_hrtime();
hr_start = ink_get_hrtime();

// test_raw_stat_a should have around 16000 in it (avg of rand())
RecIncrRawStat(g_rsb, mutex->thread_holding, (int) MY_STAT_A, rand());
Expand Down Expand Up @@ -494,7 +494,7 @@ struct RawStatCont:public Continuation
ink_atomic_increment(&g_count, 1);

// test_raw_stat_e should have the time it takes to run this function
hr_finish = ink_ink_get_hrtime();
hr_finish = ink_get_hrtime();
RecIncrRawStat(g_rsb, mutex->thread_holding, (int) MY_STAT_E, hr_finish - hr_start);

return 0;
Expand Down