1// Copyright 2014 The Go Authors. All rights reserved.
2// Use of this source code is governed by a BSD-style
3// license that can be found in the LICENSE file.
4
5package debug
6
7import (
8	"time"
9)
10
11// Implemented in package runtime.
12func readGCStats(*[]time.Duration)
13func freeOSMemory()
14func setMaxStack(int) int
15func setGCPercent(int32) int32
16func setPanicOnFault(bool) bool
17func setMaxThreads(int) int
18