Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for allocmcache (0.21 sec)

  1. src/runtime/proc.go

    			if mcache0 == nil {
    				throw("missing mcache?")
    			}
    			// Use the bootstrap mcache0. Only one P will get
    			// mcache0: the one with ID 0.
    			pp.mcache = mcache0
    		} else {
    			pp.mcache = allocmcache()
    		}
    	}
    	if raceenabled && pp.raceprocctx == 0 {
    		if id == 0 {
    			pp.raceprocctx = raceprocctx0
    			raceprocctx0 = 0 // bootstrap
    		} else {
    			pp.raceprocctx = raceproccreate()
    		}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
Back to top