github.com/nyan233/littlerpc@v0.4.6-0.20230316182519-0c8d5c48abaf/internal/asm/pause_other.go (about)

     1  //go:build !amd64
     2  
     3  package asm
     4  
     5  import "runtime"
     6  
     7  func PAUSE() {
     8  	runtime.Gosched()
     9  }