Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for userTaskCreate (0.26 sec)

  1. src/runtime/trace/annotation.go

    // may have changed by the time this function returns.
    func IsEnabled() bool {
    	return tracing.enabled.Load()
    }
    
    //
    // Function bodies are defined in runtime/trace.go
    //
    
    // emits UserTaskCreate event.
    func userTaskCreate(id, parentID uint64, taskType string)
    
    // emits UserTaskEnd event.
    func userTaskEnd(id uint64)
    
    // emits UserRegion event.
    func userRegion(id, mode uint64, regionType string)
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jun 20 00:47:09 UTC 2023
    - 6.1K bytes
    - Viewed (0)
  2. src/runtime/traceruntime.go

    }
    
    // To access runtime functions from runtime/trace.
    // See runtime/trace/annotation.go
    
    // trace_userTaskCreate emits a UserTaskCreate event.
    //
    //go:linkname trace_userTaskCreate runtime/trace.userTaskCreate
    func trace_userTaskCreate(id, parentID uint64, taskType string) {
    	tl := traceAcquire()
    	if !tl.ok() {
    		// Need to do this check because the caller won't have it.
    		return
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 25.7K bytes
    - Viewed (0)
  3. src/internal/trace/internal/oldtrace/parser.go

    	EvGCMarkAssistStart: {"GCMarkAssistStart", 9, true, []string{}, nil},
    	EvGCMarkAssistDone:  {"GCMarkAssistDone", 9, false, []string{}, nil},
    	EvUserTaskCreate:    {"UserTaskCreate", 11, true, []string{"taskid", "pid", "typeid"}, []string{"name"}},
    	EvUserTaskEnd:       {"UserTaskEnd", 11, true, []string{"taskid"}, 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)
Back to top