Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for mappedReady (0.12 sec)

  1. src/runtime/mstats.go

    		}
    		// Also check that mappedReady lines up with totalMapped - released.
    		// This isn't really the same type of "make sure consistent stats line up" situation,
    		// but this is an opportune time to check.
    		if gcController.mappedReady.Load() != totalMapped-uint64(consStats.released) {
    			print("runtime: mappedReady=", gcController.mappedReady.Load(), "\n")
    			print("runtime: totalMapped=", totalMapped, "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Apr 08 21:03:13 UTC 2024
    - 34.2K bytes
    - Viewed (0)
  2. src/runtime/export_test.go

    	// 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.
    	gcController.mappedReady.Add(-int64(p.summaryMappedReady))
    	testSysStat.add(-int64(p.summaryMappedReady))
    
    	// Free the mapped space for chunks.
    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