Esempio n. 1
0
	struct timespec howMuchTimeFromNow(Timestamp when)
	{
		int microseconds = when.microSecondsSinceEpoch() -
			Timestamp::now().microSecondsSinceEpoch();
		if (microseconds < 100)
		{
			microseconds = 100;
		}

		struct timespec ts;
		ts.tv_sec = static_cast<time_t>(microseconds / Timestamp::kMicroSecondsPerSecond);
		ts.tv_nsec = static_cast<long>((microseconds % Timestamp::kMicroSecondsPerSecond) * 1000);

		return ts;
	}