view src/env_common.rs @ 184:b3da8e0fe92d

Add a few comments and remove one unneeded import in table_cache.
author Lewin Bormann <lbo@spheniscida.de>
date Fri, 18 Aug 2017 06:18:25 +0000
parents d7e4693effba
children 9f01a2fbcda2
line wrap: on
line source

use std::thread;
use std::time;


pub fn micros() -> u64 {
    loop {
        let now = time::SystemTime::now().duration_since(time::UNIX_EPOCH);

        match now {
            Err(_) => continue,
            Ok(dur) => return dur.as_secs() * 1000000 + (dur.subsec_nanos() / 1000) as u64,
        }
    }
}

pub fn sleep_for(micros: u32) {
    thread::sleep(time::Duration::new(0, micros * 1000));
}