diff options
author | cinap_lenrek <cinap_lenrek@felloff.net> | 2014-12-30 15:17:27 +0100 |
---|---|---|
committer | cinap_lenrek <cinap_lenrek@felloff.net> | 2014-12-30 15:17:27 +0100 |
commit | 080cc49f5000a4e82c015af79dd6e489a33d3f68 (patch) | |
tree | 3f9da20176ecffad88ac8e98929be52456369694 | |
parent | ed294a65cb3c9ac529dc21368960520a6aa2778a (diff) | |
download | plan9front-080cc49f5000a4e82c015af79dd6e489a33d3f68.tar.xz |
zynq: implement µs()
-rw-r--r-- | sys/src/9/zynq/timer.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/src/9/zynq/timer.c b/sys/src/9/zynq/timer.c index d61d7c689..585fe295a 100644 --- a/sys/src/9/zynq/timer.c +++ b/sys/src/9/zynq/timer.c @@ -49,8 +49,7 @@ fastticks(uvlong *hz) ulong µs(void) { - NOPE - return 0; + return fastticks2us(fastticks(nil)); } void |