1
0
Fork 0
mirror of https://github.com/diamondburned/cchat-gtk.git synced 2024-12-22 20:27:07 +00:00

Added aggressive GC with GODEBUG=madvdontneed=1

This commit is contained in:
diamondburned 2020-09-17 18:32:38 -07:00
parent 35c186580b
commit ebc8e82907

18
main.go
View file

@ -1,6 +1,11 @@
package main
import (
"os"
"runtime/debug"
"strings"
"time"
"github.com/diamondburned/cchat-gtk/internal/gts"
"github.com/diamondburned/cchat-gtk/internal/log"
"github.com/diamondburned/cchat-gtk/internal/ui"
@ -14,6 +19,19 @@ import (
// destructor is used for debugging and profiling.
var destructor = func() {}
func init() {
// Aggressive memory freeing you asked, so aggressive memory freeing we will
// deliver.
if strings.Contains(os.Getenv("GODEBUG"), "madvdontneed=1") {
go func() {
log.Println("Now attempting to free memory every 5s... (madvdontneed=1)")
for range time.Tick(5 * time.Second) {
debug.FreeOSMemory()
}
}()
}
}
func main() {
gts.Main(func() gts.MainApplication {
var app = ui.NewApplication()