mirror of
https://github.com/golang/go
synced 2024-11-19 10:34:46 -07:00
f15c675fb4
Make auxv parsing in linux/arm less of a special case. * rename setup_auxv to sysargs * exclude linux/arm from vdso_none.go * move runtime.checkarm after runtime.sysargs so arm specific values are properly initialised Change-Id: I1ca7f5844ad5a162337ff061a83933fc9a2b5ff6 Reviewed-on: https://go-review.googlesource.com/2681 Reviewed-by: Minux Ma <minux@golang.org> Reviewed-by: Ian Lance Taylor <iant@golang.org>
13 lines
289 B
Go
13 lines
289 B
Go
// 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.
|
|
|
|
// +build !linux !amd64
|
|
// +build !linux !386
|
|
// +build !linux !arm
|
|
|
|
package runtime
|
|
|
|
func sysargs(argc int32, argv **byte) {
|
|
}
|