The following program constantly prints a value larger than 1.02

package main

import "fmt"

func main() {
    foo, bar := make(chan struct{}), make(chan struct{})
    close(foo)
    close(bar)
    x, y := 0.0, 0.0
    f := func(){x++}
    g := func(){y++}
    for i := 0; i < 1000000; i++ {
        select {
        case <-bar: g()
        case <-foo: f()
        case <-bar: g()
        case <-foo: f()
        case <-bar: g()
        case <-foo: f()
        }
    }
    fmt.Println(x/y)
}

if the last two cases are removed, then it becomes quit fair.

-- 
You received this message because you are subscribed to the Google Groups 
"golang-nuts" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to golang-nuts+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to