2014-07-29 Ed Smith-Rowland <3dw4rd@verizon.net>
[official-gcc.git] / libgo / runtime / go-nanotime.c
blob7e5e3e098a99101df3cb5883f4433095402da95f
1 // Copyright 2009 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
5 // Return current time in nanoseconds.
7 #include <sys/time.h>
9 #include "runtime.h"
11 int64 runtime_nanotime (void)
12 __attribute__ ((no_split_stack));
14 int64
15 runtime_nanotime (void)
17 struct timeval tv;
19 gettimeofday (&tv, NULL);
20 return (int64) tv.tv_sec * 1000000000 + (int64) tv.tv_usec * 1000;