diff options
| author | Bryan C. Mills <bcmills@google.com> | 2022-11-11 13:12:47 -0500 |
|---|---|---|
| committer | Gopher Robot <gobot@golang.org> | 2022-11-11 18:53:49 +0000 |
| commit | 46bed9d04c5f1e0da557d79b9a35bf9331fcd33f (patch) | |
| tree | 28e4c593bf199ec6e676099cfc69f886192f18a4 /src | |
| parent | 97765249082b6835c77517a4e63bb38cfd6db97b (diff) | |
| download | go-46bed9d04c5f1e0da557d79b9a35bf9331fcd33f.tar.xz | |
runtime/race: add missing copyright headers to syso import files
These were apparently missed in CL 424034.
Change-Id: I60fcdd8c16992177a23c0e701f4224b250cfabee
Reviewed-on: https://go-review.googlesource.com/c/go/+/449855
Reviewed-by: Keith Randall <khr@google.com>
TryBot-Result: Gopher Robot <gobot@golang.org>
Auto-Submit: Bryan Mills <bcmills@google.com>
Reviewed-by: Keith Randall <khr@golang.org>
Run-TryBot: Bryan Mills <bcmills@google.com>
Diffstat (limited to 'src')
| -rw-r--r-- | src/runtime/race/race_v1_amd64.go | 4 | ||||
| -rw-r--r-- | src/runtime/race/race_v3_amd64.go | 4 |
2 files changed, 8 insertions, 0 deletions
diff --git a/src/runtime/race/race_v1_amd64.go b/src/runtime/race/race_v1_amd64.go index 5bc9ebfc67..b8a20315fd 100644 --- a/src/runtime/race/race_v1_amd64.go +++ b/src/runtime/race/race_v1_amd64.go @@ -1,3 +1,7 @@ +// Copyright 2022 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. + //go:build (linux && !amd64.v3) || darwin || freebsd || netbsd || openbsd || windows // +build linux,!amd64.v3 darwin freebsd netbsd openbsd windows diff --git a/src/runtime/race/race_v3_amd64.go b/src/runtime/race/race_v3_amd64.go index 7d2395b907..913bb77f48 100644 --- a/src/runtime/race/race_v3_amd64.go +++ b/src/runtime/race/race_v3_amd64.go @@ -1,3 +1,7 @@ +// Copyright 2022 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. + //go:build linux && amd64.v3 // +build linux,amd64.v3 |
