1// Copyright 2015 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/* 6Package race contains helper functions for manually instrumenting code for the race detector. 7 8The runtime package intentionally exports these functions only in the race build; 9this package exports them unconditionally but without the "race" build tag they are no-ops. 10*/ 11package race 12