Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for mProf_FlushLocked (0.12 sec)

  1. src/runtime/mprof.go

    	if alreadyFlushed {
    		return
    	}
    
    	index := cycle % uint32(len(memRecord{}.future))
    	lock(&profMemActiveLock)
    	lock(&profMemFutureLock[index])
    	mProf_FlushLocked(index)
    	unlock(&profMemFutureLock[index])
    	unlock(&profMemActiveLock)
    }
    
    // mProf_FlushLocked flushes the events from the heap profiling cycle at index
    // into the active profile. The caller must hold the lock for the active profile
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Thu May 30 17:57:37 UTC 2024
    - 53.3K bytes
    - Viewed (0)
Back to top