Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for pollCache (0.19 sec)

  1. src/runtime/netpoll.go

    	pdWait  uintptr = 2
    )
    
    const pollBlockSize = 4 * 1024
    
    // Network poller descriptor.
    //
    // No heap pointers.
    type pollDesc struct {
    	_     sys.NotInHeap
    	link  *pollDesc      // in pollcache, protected by pollcache.lock
    	fd    uintptr        // constant for pollDesc usage lifetime
    	fdseq atomic.Uintptr // protects against stale pollDesc
    
    	// atomicInfo holds bits from closing, rd, and wd,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 19:57:43 UTC 2024
    - 20.7K bytes
    - Viewed (0)
  2. src/runtime/mklockrank.go

    NONE < defer;
    
    # GC
    NONE <
      sweepWaiters,
      assistQueue,
      sweep;
    
    # Test only
    NONE < testR, testW;
    
    NONE < timerSend;
    
    # Scheduler, timers, netpoll
    NONE < allocmW, execW, cpuprof, pollCache, pollDesc, wakeableSleep;
    scavenge, sweep, testR, wakeableSleep, timerSend < hchan;
    assistQueue,
      cpuprof,
      forcegc,
      hchan,
      pollDesc, # pollDesc can interact with timers, which can lock sched.
      scavenge,
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 9.1K bytes
    - Viewed (0)
  3. src/runtime/lockrank.go

    	lockRankTestW:           "testW",
    	lockRankTimerSend:       "timerSend",
    	lockRankAllocmW:         "allocmW",
    	lockRankExecW:           "execW",
    	lockRankCpuprof:         "cpuprof",
    	lockRankPollCache:       "pollCache",
    	lockRankPollDesc:        "pollDesc",
    	lockRankWakeableSleep:   "wakeableSleep",
    	lockRankHchan:           "hchan",
    	lockRankAllocmR:         "allocmR",
    	lockRankExecR:           "execR",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 19.9K bytes
    - Viewed (0)
Back to top