Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for markrootNext (0.16 sec)

  1. src/runtime/mgcmark.go

    	work.baseEnd = work.baseStacks + uint32(work.nStackRoots)
    }
    
    // gcMarkRootCheck checks that all roots have been scanned. It is
    // purely for debugging.
    func gcMarkRootCheck() {
    	if work.markrootNext < work.markrootJobs {
    		print(work.markrootNext, " of ", work.markrootJobs, " markroot jobs done\n")
    		throw("left over markroot jobs")
    	}
    
    	// Check that stacks have been scanned.
    	//
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu Apr 18 21:25:11 UTC 2024
    - 52.5K bytes
    - Viewed (0)
  2. src/runtime/mgc.go

    	}
    	work.tstart = startTime
    
    	// Check that there's no marking work remaining.
    	if work.full != 0 || work.markrootNext < work.markrootJobs {
    		print("runtime: full=", hex(work.full), " next=", work.markrootNext, " jobs=", work.markrootJobs, " nDataRoots=", work.nDataRoots, " nBSSRoots=", work.nBSSRoots, " nSpanRoots=", work.nSpanRoots, " nStackRoots=", work.nStackRoots, "\n")
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 16:25:21 UTC 2024
    - 62K bytes
    - Viewed (0)
Back to top