mirror of
https://github.com/golang/sys.git
synced 2026-02-08 03:36:03 +03:00
Change-Id: I187edceaf3604d73110940bd5580fa127a85e87d Reviewed-on: https://go-review.googlesource.com/129735 Run-TryBot: Tobias Klauser <tobias.klauser@gmail.com> TryBot-Result: Gobot Gobot <gobot@golang.org> Reviewed-by: Tobias Klauser <tobias.klauser@gmail.com>
16 lines
367 B
Go
16 lines
367 B
Go
// Copyright 2017 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 aix darwin dragonfly freebsd linux netbsd openbsd solaris
|
|
|
|
// For Unix, get the pagesize from the runtime.
|
|
|
|
package unix
|
|
|
|
import "syscall"
|
|
|
|
func Getpagesize() int {
|
|
return syscall.Getpagesize()
|
|
}
|