]> git.ipfire.org Git - thirdparty/gcc.git/blob - libgo/go/io/ioutil/blackhole_race.go
libgo: Update to current sources.
[thirdparty/gcc.git] / libgo / go / io / ioutil / blackhole_race.go
1 // Copyright 2012 The Go Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style
3 // license that can be found in the LICENSE file.
4
5 // +build race
6
7 package ioutil
8
9 // Replaces the normal fast implementation with slower but formally correct one.
10
11 func blackHole() []byte {
12 return make([]byte, 8192)
13 }