konradreiche / java-concurrency-profiler

A Java profiler with emphasis on concurrent program information.
Other
6 stars 1 forks source link

Timestamp inconsistency #19

Closed konradreiche closed 13 years ago

konradreiche commented 13 years ago

Comparing the transmitted timestamps and their events with each other, there seems to be an inconsistency. Investigate what the reason is.

konradreiche commented 13 years ago

The timestamps just needed to be ordered, however it is not fully clear yet how the clock_gettime system function in C++ works.

konradreiche commented 13 years ago

Replaced clock_gettime() by rdtsc() in order to provide a more reliable source for generating totally ordered event message numeration.