最简单的Go竞赛条件示例?

I need a simple Go code sample which will definitely run the program into an race-condition.

Any ideas?

The original question:

I need a simple Go code sample which will definitely run the program into an race-condition.


For example,

racer.go:

package main

import (
    "time"
)

var count int

func race() {
    count++
}

func main() {
    go race()
    go race()
    time.Sleep(1 * time.Second)
}

Output:

$ go run -race racer.go
==================
WARNING: DATA RACE
Read at 0x00000052ccf8 by goroutine 6:
  main.race()
      /home/peter/gopath/src/racer.go:10 +0x3a

Previous write at 0x00000052ccf8 by goroutine 5:
  main.race()
      /home/peter/gopath/src/racer.go:10 +0x56

Goroutine 6 (running) created at:
  main.main()
      /home/peter/gopath/src/racer.go:15 +0x5a

Goroutine 5 (finished) created at:
  main.main()
      /home/peter/gopath/src/racer.go:14 +0x42
==================
Found 1 data race(s)
exit status 66
$