Elapsed time in microseconds, with both whole seconds and the rest

May cause an Int overflow, use only with a low number of seconds.

Property definitions

realtime $ Timespec :: microsec
	# Elapsed time in microseconds, with both whole seconds and the rest
	#
	# May cause an `Int` overflow, use only with a low number of seconds.
	fun microsec: Int `{
		return self->tv_sec*1000000 + self->tv_nsec/1000;
	`}
lib/realtime/realtime.nit:125,2--130,3