mirror of https://github.com/v2ray/v2ray-core
trigger GC after loading
parent
248099eca5
commit
14646940a0
|
@ -8,6 +8,7 @@ import (
|
|||
"os"
|
||||
"os/signal"
|
||||
"path/filepath"
|
||||
"runtime"
|
||||
"strings"
|
||||
"syscall"
|
||||
|
||||
|
@ -119,6 +120,9 @@ func main() {
|
|||
os.Exit(-1)
|
||||
}
|
||||
|
||||
// Explicitly triggering GC to remove garbage from config loading.
|
||||
runtime.GC()
|
||||
|
||||
osSignals := make(chan os.Signal, 1)
|
||||
signal.Notify(osSignals, os.Interrupt, os.Kill, syscall.SIGTERM)
|
||||
|
||||
|
|
Loading…
Reference in New Issue