Search Options

Results per page
Sort
Preferred Languages
Advance

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

  1. src/internal/trace/resources.go

    	return StateTransition{
    		Resource: ResourceID{Kind: ResourceGoroutine, id: int64(id)},
    		oldState: uint8(from),
    		newState: uint8(to),
    	}
    }
    
    func procStateTransition(id ProcID, from, to ProcState) StateTransition {
    	return StateTransition{
    		Resource: ResourceID{Kind: ResourceProc, id: int64(id)},
    		oldState: uint8(from),
    		newState: uint8(to),
    	}
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri May 17 18:48:18 UTC 2024
    - 8K bytes
    - Viewed (0)
Back to top