Search Options

Results per page
Sort
Preferred Languages
Advance

Results 41 - 42 of 42 for recvq (0.05 sec)

  1. src/runtime/trace.go

    // close to free up resources. Once close is called, init
    // must be called before another use.
    type wakeableSleep struct {
    	timer *timer
    
    	// lock protects access to wakeup, but not send/recv on it.
    	lock   mutex
    	wakeup chan struct{}
    }
    
    // newWakeableSleep initializes a new wakeableSleep and returns it.
    func newWakeableSleep() *wakeableSleep {
    	s := new(wakeableSleep)
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 21:17:41 UTC 2024
    - 37.1K bytes
    - Viewed (0)
  2. src/internal/trace/internal/oldtrace/parser.go

    	EvGoBlockSend       event.Type = 22 // goroutine blocks on chan send [timestamp, stack]
    	EvGoBlockRecv       event.Type = 23 // goroutine blocks on chan recv [timestamp, stack]
    	EvGoBlockSelect     event.Type = 24 // goroutine blocks on select [timestamp, stack]
    	EvGoBlockSync       event.Type = 25 // goroutine blocks on Mutex/RWMutex [timestamp, stack]
    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