Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for sysUnused (0.14 sec)

  1. src/runtime/arena.go

    	//
    	// Unlike (*mheap).grow, just map in everything that we
    	// asked for. We're likely going to use it all.
    	sysMap(unsafe.Pointer(base), userArenaChunkBytes, &gcController.heapReleased)
    	sysUsed(unsafe.Pointer(base), userArenaChunkBytes, userArenaChunkBytes)
    
    	// Model the user arena as a heap span for a large object.
    	spc := makeSpanClass(0, false)
    	h.initSpan(s, spanAllocHeap, spc, base, userArenaChunkPages)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:44:56 UTC 2024
    - 37.9K bytes
    - Viewed (0)
  2. src/runtime/export_test.go

    	// Free extra data structures.
    	sysFreeOS(unsafe.Pointer(&p.scav.index.chunks[0]), uintptr(cap(p.scav.index.chunks))*unsafe.Sizeof(atomicScavChunkData{}))
    
    	// Subtract back out whatever we mapped for the summaries.
    	// sysUsed adds to p.sysStat and memstats.mappedReady no matter what
    	// (and in anger should actually be accounted for), and there's no other
    	// way to figure out how much we actually mapped.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:50:53 UTC 2024
    - 46.1K bytes
    - Viewed (0)
Back to top