view src/env_common.rs @ 202:344515a861ac

memtable: Fix bug in seek(); it used the wrong key format for seeking the inner map.
author Lewin Bormann <lbo@spheniscida.de>
date Sun, 03 Sep 2017 17:13:51 +0200
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));
}