Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/internal/trace/gc.go

    			r := ev.Range()
    			if handleSTW(r) {
    				stw++
    			} else if handleSweep(r) {
    				ps[ev.Proc()].gc++
    			} else if handleMarkAssist(r) {
    				ps[ev.Proc()].gc++
    				if g := r.Scope.Goroutine(); g != NoGoroutine {
    					inGC[g] = true
    				}
    			}
    		case EventRangeEnd:
    			r := ev.Range()
    			if handleSTW(r) {
    				stw--
    			} else if handleSweep(r) {
    				ps[ev.Proc()].gc--
    			} else if handleMarkAssist(r) {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 26K bytes
    - Viewed (0)
Back to top