Updated LockOSThread (markdown)

Jeremy Jackins 2015-01-27 22:24:43 +09:00
parent 4399252b98
commit 1804902a29

@ -22,7 +22,7 @@ func init() {
// Main does not return. If the binary needs to do other work, it // Main does not return. If the binary needs to do other work, it
// must do it in separate goroutines. // must do it in separate goroutines.
func Main() { func Main() {
for f = range mainfunc { for f := range mainfunc {
f() f()
} }
} }