From: Dave Cheney Date: Tue, 11 Mar 2014 21:55:30 +0000 (+1100) Subject: runtime: disable Native Client fake time support X-Git-Tag: go1.3beta1~394 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=42da29f47469ae9cc72ab96375e85506606ade33;p=gostls13.git 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 --- 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.