mirror of
https://github.com/golang/go
synced 2024-11-13 20:00:23 -07:00
d7974c31d0
As reported by John Papandriopoulos, some parts of CL 216622 weren't properly formatted. Change-Id: I3a76abb6213bb17ef440036295c86d930703b456 Reviewed-on: https://go-review.googlesource.com/c/go/+/269218 Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com> TryBot-Result: Go Bot <gobot@golang.org> Reviewed-by: Alberto Donizetti <alb.donizetti@gmail.com> Trust: Alberto Donizetti <alb.donizetti@gmail.com> Trust: Tobias Klauser <tobias.klauser@gmail.com>
13 lines
293 B
Go
13 lines
293 B
Go
// Copyright 2020 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 os
|
|
|
|
// From DragonFly's <sys/sysctl.h>
|
|
const (
|
|
_CTL_KERN = 1
|
|
_KERN_PROC = 14
|
|
_KERN_PROC_PATHNAME = 9
|
|
)
|