free.go 114 B

12345678910
  1. //go:build !linux
  2. // +build !linux
  3. package memory
  4. import "runtime/debug"
  5. func Free() {
  6. debug.FreeOSMemory()
  7. }