diff options
author | Andrew Gerrand <adg@golang.org> | 2013-06-25 09:26:36 +1000 |
---|---|---|
committer | Andrew Gerrand <adg@golang.org> | 2013-06-25 09:26:36 +1000 |
commit | 235bb198da098068fe79b2cde98062fc1af13d9a (patch) | |
tree | e9f959ee9dd66f2322c2b0b8ea9189bee8e047a8 /support | |
parent | 219e95eb733e17497d8112e7a6b4e1ca11a3f2f5 (diff) |
go.blog: add racy example program
R=dvyukov, r, remyoudompheng
CC=golang-dev
https://golang.org/cl/10447044
Diffstat (limited to 'support')
-rw-r--r-- | support/racy/racy.go | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/support/racy/racy.go b/support/racy/racy.go new file mode 100644 index 0000000..e23ba9b --- /dev/null +++ b/support/racy/racy.go @@ -0,0 +1,23 @@ +// Copyright 2013 The Go Authors. All rights reserved. +// Use of this source code is governed by a BSD-style +// license that can be found in the LICENSE file. + +// +build !appengine + +// This program demonstrates a race condition. +// To observe the race with the race detector, build with -race. +package main + +import "fmt" + +func main() { + done := make(chan bool) + m := make(map[string]string) + m["name"] = "world" + go func() { + m["name"] = "data race" + done <- true + }() + fmt.Println("Hello,", m["name"]) + <-done +} |