Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for GoEnd (0.07 sec)

  1. src/runtime/traceruntime.go

    		w = w.write(traceEvGoLabel, trace.markWorkerLabels[tl.gen%2][pp.ptr().gcMarkWorkerMode])
    	}
    	w.end()
    }
    
    // GoEnd emits a GoDestroy event.
    //
    // TODO(mknyszek): Rename this to GoDestroy.
    func (tl traceLocker) GoEnd() {
    	tl.eventWriter(traceGoRunning, traceProcRunning).commit(traceEvGoDestroy)
    }
    
    // GoSched emits a GoStop event with a GoSched reason.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  2. src/internal/trace/internal/oldtrace/parser.go

    	EvGoCreate:          {"GoCreate", 5, true, []string{"g", "stack"}, nil},
    	EvGoStart:           {"GoStart", 5, false, []string{"g", "seq"}, nil}, // in 1.5 format it was {"g"}
    	EvGoEnd:             {"GoEnd", 5, false, []string{}, nil},
    	EvGoStop:            {"GoStop", 5, true, []string{}, nil},
    	EvGoSched:           {"GoSched", 5, true, []string{}, nil},
    	EvGoPreempt:         {"GoPreempt", 5, true, []string{}, nil},
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 24 21:15:28 UTC 2024
    - 46.8K bytes
    - Viewed (0)
  3. src/runtime/proc.go

    	schedule()
    }
    
    // Finishes execution of the current goroutine.
    func goexit1() {
    	if raceenabled {
    		racegoend()
    	}
    	trace := traceAcquire()
    	if trace.ok() {
    		trace.GoEnd()
    		traceRelease(trace)
    	}
    	mcall(goexit0)
    }
    
    // goexit continuation on g0.
    func goexit0(gp *g) {
    	gdestroy(gp)
    	schedule()
    }
    
    func gdestroy(gp *g) {
    	mp := getg().m
    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