From b5245b9c77d5320afd4ab22194c577a8e02b5fc4 Mon Sep 17 00:00:00 2001 From: Andrew Gerrand Date: Tue, 23 Jul 2013 10:10:11 +1000 Subject: [release-branch.go1.1] undo 6efaa14e2e7f It breaks the build. R=golang-dev CC=golang-dev https://golang.org/cl/11584045 --- src/pkg/runtime/proc.c | 1 - 1 file changed, 1 deletion(-) diff --git a/src/pkg/runtime/proc.c b/src/pkg/runtime/proc.c index 9ad2ea091b..5734509e0c 100644 --- a/src/pkg/runtime/proc.c +++ b/src/pkg/runtime/proc.c @@ -2015,7 +2015,6 @@ sysmon(void) lastpoll = runtime·atomicload64(&runtime·sched.lastpoll); now = runtime·nanotime(); if(lastpoll != 0 && lastpoll + 10*1000*1000 > now) { - runtime·cas64(&runtime·sched.lastpoll, lastpoll, now); gp = runtime·netpoll(false); // non-blocking injectglist(gp); } -- cgit v1.2.3-54-g00ecf