Skip to content

Commit

Permalink
runtime: add file copyright header declaration
Browse files Browse the repository at this point in the history
Some files have no copyright notice.
The copyright time is the earliest modification record of the file.

Change-Id: I5698bae16b6b73543e074415877a03348f792951
Reviewed-on: https://go-review.googlesource.com/c/go/+/246378
Run-TryBot: Emmanuel Odeke <[email protected]>
TryBot-Result: Gobot Gobot <[email protected]>
Reviewed-by: Emmanuel Odeke <[email protected]>
  • Loading branch information
heisen-li authored and odeke-em committed Sep 2, 2020
1 parent 7432bee commit e6583dc
Show file tree
Hide file tree
Showing 9 changed files with 36 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/runtime/defs_linux_arm.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2014 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.

package runtime

// Constants
Expand Down
4 changes: 4 additions & 0 deletions src/runtime/defs_linux_mips64x.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2015 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 mips64 mips64le
// +build linux

Expand Down
4 changes: 4 additions & 0 deletions src/runtime/defs_openbsd_arm64.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2019 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.

package runtime

import "unsafe"
Expand Down
4 changes: 4 additions & 0 deletions src/runtime/defs_plan9_386.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2014 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.

package runtime

const _PAGESIZE = 0x1000
Expand Down
4 changes: 4 additions & 0 deletions src/runtime/defs_plan9_amd64.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2014 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.

package runtime

const _PAGESIZE = 0x1000
Expand Down
4 changes: 4 additions & 0 deletions src/runtime/rt0_linux_ppc64.s
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2016 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.

#include "textflag.h"

// actually a function descriptor for _main<>(SB)
Expand Down
4 changes: 4 additions & 0 deletions src/runtime/rt0_linux_ppc64le.s
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2016 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.

#include "go_asm.h"
#include "textflag.h"

Expand Down
4 changes: 4 additions & 0 deletions src/runtime/trace/annotation.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2018 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.

package trace

import (
Expand Down
4 changes: 4 additions & 0 deletions src/runtime/trace/annotation_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
// Copyright 2018 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.

package trace_test

import (
Expand Down

0 comments on commit e6583dc

Please sign in to comment.