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 time in nanoseconds. This is only used for computing runtime.
13 runtime_nanotime (void)
18 i
= gettimeofday (&tv
, NULL
);
21 return (int64
) tv
.tv_sec
* 1000000000 + (int64
) tv
.tv_usec
* 1000;