Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for disablethp (0.17 sec)

  1. src/runtime/runtime1.go

    	{name: "asynctimerchan", atomic: &debug.asynctimerchan},
    	{name: "cgocheck", value: &debug.cgocheck},
    	{name: "clobberfree", value: &debug.clobberfree},
    	{name: "disablethp", value: &debug.disablethp},
    	{name: "dontfreezetheworld", value: &debug.dontfreezetheworld},
    	{name: "efence", value: &debug.efence},
    	{name: "gccheckmark", value: &debug.gccheckmark},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 19.3K bytes
    - Viewed (0)
  2. src/runtime/extern.go

    	cgocheck mode can be enabled using GOEXPERIMENT (which
    	requires a rebuild), see https://pkg.go.dev/internal/goexperiment for details.
    
    	disablethp: setting disablethp=1 on Linux disables transparent huge pages for the heap.
    	It has no effect on other platforms. disablethp is meant for compatibility with versions
    	of Go before 1.21, which stopped working around a Linux kernel default that can result
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 18.9K bytes
    - Viewed (0)
  3. doc/godebug.md

    significant memory overheads, and Go 1.22 no longer works around this default.
    To work around this issue without adjusting kernel settings, transparent huge
    pages can be disabled for Go memory with the
    [`disablethp` setting](/pkg/runtime#hdr-Environment_Variable).
    This behavior was backported to Go 1.21.1, but the setting is only available
    starting with Go 1.21.6.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:52:17 UTC 2024
    - 15.9K bytes
    - Viewed (0)
Back to top