Retrieve the operating system time.
timer_unit mco_system_get_current_time(void);
This function has no arguments
This function retrieves from the operating system the number of timer ticks (microseconds) since 1 Jan 1970 (Epoch).
The number of timer ticks (microseconds) since 1 Jan 1970 (Epoch)
int main(int argc, char* argv[])
{
...
timer_unit microsecs = mco_system_get_current_time();
...
}