Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 4 of 4 for Preemptable (0.46 sec)

  1. src/runtime/proc.go

    	// holding the transient P, leaving that P in limbo and deadlocking the
    	// STW.
    	//
    	// Callers passing a non-nil P must already be in non-preemptible
    	// context, otherwise such preemption could occur on function entry to
    	// startm. Callers passing a nil P may be preemptible, so we must
    	// disable preemption before acquiring a P from pidleget below.
    	mp := acquirem()
    	if !lockheld {
    		lock(&sched.lock)
    	}
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 29 17:58:53 UTC 2024
    - 207.5K bytes
    - Viewed (0)
  2. src/debug/elf/elf.go

    	STV_INTERNAL  SymVis = 0x1 /* Special meaning in relocatable objects. */
    	STV_HIDDEN    SymVis = 0x2 /* Not visible. */
    	STV_PROTECTED SymVis = 0x3 /* Visible but not preemptible. */
    )
    
    var stvStrings = []intName{
    	{0x0, "STV_DEFAULT"},
    	{0x1, "STV_INTERNAL"},
    	{0x2, "STV_HIDDEN"},
    	{0x3, "STV_PROTECTED"},
    }
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Apr 16 00:01:16 UTC 2024
    - 134.6K bytes
    - Viewed (0)
  3. cluster/gce/util.sh

        gcloud="gcloud beta"
      fi
    
      local preemptible_minions=()
      if [[ "${PREEMPTIBLE_NODE}" == "true" ]]; then
        preemptible_minions+=(--preemptible --maintenance-policy TERMINATE)
      fi
    
      local local_ssds=()
      local_ssd_ext_count=0
      if [[ -n "${NODE_LOCAL_SSDS_EXT:-}" ]]; then
        IFS=";" read -r -a ssdgroups <<< "${NODE_LOCAL_SSDS_EXT:-}"
    Registered: Sat Jun 15 01:39:40 UTC 2024
    - Last Modified: Wed Jun 12 21:47:17 UTC 2024
    - 161.6K bytes
    - Viewed (0)
  4. src/cmd/internal/obj/x86/asm6.go

    		}
    	}
    
    	// Mark nonpreemptible instruction sequences.
    	// The 2-instruction TLS access sequence
    	//	MOVQ TLS, BX
    	//	MOVQ 0(BX)(TLS*1), BX
    	// is not async preemptible, as if it is preempted and resumed on
    	// a different thread, the TLS address may become invalid.
    	if !CanUse1InsnTLS(ctxt) {
    		useTLS := func(p *obj.Prog) bool {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Wed May 15 15:44:14 UTC 2024
    - 146.9K bytes
    - Viewed (0)
Back to top