Files
moxa/stdlib/go1_11_runtime_debug.go

33 lines
951 B
Go

// +build go1.11,!go1.12
package stdlib
// Code generated by 'goexports runtime/debug'. DO NOT EDIT.
import (
"reflect"
"runtime/debug"
)
func init() {
Value["runtime/debug"] = map[string]reflect.Value{
// function, constant and variable definitions
"FreeOSMemory": reflect.ValueOf(debug.FreeOSMemory),
"PrintStack": reflect.ValueOf(debug.PrintStack),
"ReadGCStats": reflect.ValueOf(debug.ReadGCStats),
"SetGCPercent": reflect.ValueOf(debug.SetGCPercent),
"SetMaxStack": reflect.ValueOf(debug.SetMaxStack),
"SetMaxThreads": reflect.ValueOf(debug.SetMaxThreads),
"SetPanicOnFault": reflect.ValueOf(debug.SetPanicOnFault),
"SetTraceback": reflect.ValueOf(debug.SetTraceback),
"Stack": reflect.ValueOf(debug.Stack),
"WriteHeapDump": reflect.ValueOf(debug.WriteHeapDump),
// type definitions
"GCStats": reflect.ValueOf((*debug.GCStats)(nil)),
// interface wrapper definitions
}
}