Float granularity is too low for performance markers - too many markers
were showing the same time. Upgraded it to a double - this allows the
multiplication to generate the right markers in the network client
Change-Id: I73a4eece36878c6d0cc5c5d320585dea28481ba9
Signed-off-by: David Steele <david.steele@samsung.com>
// write out the time stamp
char buffer[64];
int size = snprintf( buffer, sizeof(buffer),"%.6f (seconds), %s\n",
- (float)( marker.GetTimeStamp().microseconds * MICROSECONDS_TO_SECOND ),
- description );
+ ( (double) marker.GetTimeStamp().microseconds * MICROSECONDS_TO_SECOND ),
+ description );
return mSocket->Write( buffer, size );
}
+
// todo serialize the data
return false;
}