Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for maxSearchAddr (0.14 sec)

  1. src/runtime/mpagecache.go

    		// the first free page the slow way.
    		addr, _ := p.find(1)
    		if addr == 0 {
    			// We failed to find adequate free space, so mark the searchAddr as OoM
    			// and return an empty pageCache.
    			p.searchAddr = maxSearchAddr()
    			return pageCache{}
    		}
    		ci = chunkIndex(addr)
    		chunk = p.chunkOf(ci)
    		c = pageCache{
    			base:  alignDown(addr, 64*pageSize),
    			cache: ^chunk.pages64(chunkPageIndex(addr)),
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed Apr 19 14:30:00 UTC 2023
    - 5.6K bytes
    - Viewed (0)
Back to top