Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for stackpool (0.11 sec)

  1. src/runtime/stack.go

    	for order := range stackpool {
    		lock(&stackpool[order].item.mu)
    		list := &stackpool[order].item.span
    		for s := list.first; s != nil; {
    			next := s.next
    			if s.allocCount == 0 {
    				list.remove(s)
    				s.manualFreeList = 0
    				osStackFree(s)
    				mheap_.freeManual(s, spanAllocStack)
    			}
    			s = next
    		}
    		unlock(&stackpool[order].item.mu)
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 22 22:31:00 UTC 2024
    - 41.1K bytes
    - Viewed (0)
  2. src/runtime/mklockrank.go

      root
    # Anything that can grow the stack can acquire STACKGROW.
    # (Most higher layers imply STACKGROW, like MALLOC.)
    < STACKGROW
    # Below STACKGROW is the stack allocator/copying implementation.
    < gscan;
    gscan < stackpool;
    gscan < stackLarge;
    # Generally, hchan must be acquired before gscan. But in one case,
    # where we suspend a G and then shrink its stack, syncadjustsudogs
    # can acquire hchan locks while holding gscan. To allow this case,
    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

    	lockRankProfBlock:       "profBlock",
    	lockRankProfMemActive:   "profMemActive",
    	lockRankProfMemFuture:   "profMemFuture",
    	lockRankGscan:           "gscan",
    	lockRankStackpool:       "stackpool",
    	lockRankStackLarge:      "stackLarge",
    	lockRankHchanLeaf:       "hchanLeaf",
    	lockRankWbufSpans:       "wbufSpans",
    	lockRankMheap:           "mheap",
    	lockRankMheapSpecial:    "mheapSpecial",
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 08 17:47:01 UTC 2024
    - 19.9K bytes
    - Viewed (0)
  4. tensorflow/cc/gradients/data_flow_grad.cc

    REGISTER_NO_GRADIENT_OP("QueueDequeueUpTo");
    REGISTER_NO_GRADIENT_OP("QueueClose");
    REGISTER_NO_GRADIENT_OP("QueueSize");
    REGISTER_NO_GRADIENT_OP("Stack");
    REGISTER_NO_GRADIENT_OP("StackPush");
    REGISTER_NO_GRADIENT_OP("StackPop");
    REGISTER_NO_GRADIENT_OP("StackClose");
    REGISTER_NO_GRADIENT_OP("GetSessionHandle");
    REGISTER_NO_GRADIENT_OP("GetSessionHandleV2");
    REGISTER_NO_GRADIENT_OP("GetSessionTensor");
    Registered: Sun Jun 16 05:45:23 UTC 2024
    - Last Modified: Sat Jul 24 13:40:35 UTC 2021
    - 5.8K bytes
    - Viewed (0)
Back to top