add microtime

This commit is contained in:
pooka 2007-08-08 07:50:33 +00:00
parent 2f62cc688b
commit 034104770f
1 changed files with 8 additions and 1 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: emul.c,v 1.1 2007/08/05 22:28:07 pooka Exp $ */
/* $NetBSD: emul.c,v 1.2 2007/08/08 07:50:33 pooka Exp $ */
/*
* Copyright (c) 2007 Antti Kantee. All Rights Reserved.
@ -267,6 +267,13 @@ getnanotime(struct timespec *ts)
nanotime(ts);
}
void
microtime(struct timeval *tv)
{
rumpuser_gettimeofday(tv);
}
void
bdev_strategy(struct buf *bp)
{