Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for ktimer_delete (0.11 sec)

  1. src/runtime/os_linux.go

    	if mp.profileTimerValid.Load() {
    		timerid := mp.profileTimer
    		mp.profileTimerValid.Store(false)
    		mp.profileTimer = 0
    
    		ret := timer_delete(timerid)
    		if ret != 0 {
    			print("runtime: failed to disable profiling timer; timer_delete(", timerid, ") errno=", -ret, "\n")
    			throw("timer_delete")
    		}
    	}
    
    	if hz == 0 {
    		// If the goal was to disable profiling for this thread, then the job's done.
    		return
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Mon Mar 25 19:53:03 UTC 2024
    - 25.9K bytes
    - Viewed (0)
Back to top