2023-03-17 06:51:09 +00:00
|
|
|
//go:build go1.19
|
|
|
|
|
|
|
|
package box
|
|
|
|
|
|
|
|
import (
|
|
|
|
"runtime/debug"
|
|
|
|
|
|
|
|
"github.com/sagernet/sing-box/common/dialer/conntrack"
|
|
|
|
"github.com/sagernet/sing-box/option"
|
|
|
|
)
|
|
|
|
|
|
|
|
func applyDebugOptions(options option.DebugOptions) {
|
2023-04-22 07:58:25 +00:00
|
|
|
applyDebugListenOption(options)
|
2023-03-17 06:51:09 +00:00
|
|
|
if options.GCPercent != nil {
|
|
|
|
debug.SetGCPercent(*options.GCPercent)
|
|
|
|
}
|
|
|
|
if options.MaxStack != nil {
|
|
|
|
debug.SetMaxStack(*options.MaxStack)
|
|
|
|
}
|
|
|
|
if options.MaxThreads != nil {
|
|
|
|
debug.SetMaxThreads(*options.MaxThreads)
|
|
|
|
}
|
|
|
|
if options.PanicOnFault != nil {
|
|
|
|
debug.SetPanicOnFault(*options.PanicOnFault)
|
|
|
|
}
|
|
|
|
if options.TraceBack != "" {
|
|
|
|
debug.SetTraceback(options.TraceBack)
|
|
|
|
}
|
|
|
|
if options.MemoryLimit != 0 {
|
|
|
|
debug.SetMemoryLimit(int64(options.MemoryLimit))
|
|
|
|
conntrack.MemoryLimit = int64(options.MemoryLimit)
|
|
|
|
}
|
|
|
|
if options.OOMKiller != nil {
|
|
|
|
conntrack.KillerEnabled = *options.OOMKiller
|
|
|
|
}
|
|
|
|
}
|