2016-07-22 18:15:38 +00:00
|
|
|
// Copyright 2016 The Go Authors. All rights reserved.
|
2016-02-18 05:56:46 +00:00
|
|
|
// Use of this source code is governed by a BSD-style
|
|
|
|
// license that can be found in the LICENSE file.
|
|
|
|
|
|
|
|
// +build ignore
|
|
|
|
|
|
|
|
// Export guts for testing.
|
|
|
|
|
|
|
|
package runtime
|
|
|
|
|
|
|
|
var Mmap = mmap
|
|
|
|
|
|
|
|
const ENOMEM = _ENOMEM
|
|
|
|
const MAP_ANON = _MAP_ANON
|
|
|
|
const MAP_PRIVATE = _MAP_PRIVATE
|