]> Cypherpunks repositories - gostls13.git/commitdiff
runtime: disable Native Client fake time support
authorDave Cheney <dave@cheney.net>
Tue, 11 Mar 2014 21:55:30 +0000 (08:55 +1100)
committerDave Cheney <dave@cheney.net>
Tue, 11 Mar 2014 21:55:30 +0000 (08:55 +1100)
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

index e73a364a1a085df5678ccdc164614c7fafbd720e..d9393d7c8a4926d27a610457a386c2ad2657aabf 100644 (file)
@@ -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.