| 12345678910111213141516171819202122232425262728293031323334 | 
							- package box
 
- import (
 
- 	"runtime/debug"
 
- 	"github.com/sagernet/sing-box/common/conntrack"
 
- 	"github.com/sagernet/sing-box/option"
 
- )
 
- func applyDebugOptions(options option.DebugOptions) {
 
- 	applyDebugListenOption(options)
 
- 	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.Value() != 0 {
 
- 		debug.SetMemoryLimit(int64(float64(options.MemoryLimit.Value()) / 1.5))
 
- 		conntrack.MemoryLimit = options.MemoryLimit.Value()
 
- 	}
 
- 	if options.OOMKiller != nil {
 
- 		conntrack.KillerEnabled = *options.OOMKiller
 
- 	}
 
- }
 
 
  |