From 42da29f47469ae9cc72ab96375e85506606ade33 Mon Sep 17 00:00:00 2001 From: Dave Cheney Date: Wed, 12 Mar 2014 08:55:30 +1100 Subject: [PATCH] runtime: disable Native Client fake time support This CL is a reformulation of CL 73110043 containing only the minimum required to get the nacl builds compiling. LGTM=bradfitz R=rsc, bradfitz CC=golang-codereviews https://golang.org/cl/74220043 --- src/pkg/runtime/time.goc | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/pkg/runtime/time.goc b/src/pkg/runtime/time.goc index e73a364a1a..d9393d7c8a 100644 --- a/src/pkg/runtime/time.goc +++ b/src/pkg/runtime/time.goc @@ -21,6 +21,9 @@ static Timers timers; static void addtimer(Timer*); static void dumptimers(int8*); +// nacl fake time support. +int64 runtime·timens; + // Package time APIs. // Godoc uses the comments in package time, not these. -- 2.48.1