github.com/cnboonhan/delve@v0.0.0-20230908061759-363f2388c2fb/pkg/proc/native/threads_linux_386.go (about)

     1  package native
     2  
     3  import (
     4  	"fmt"
     5  	"github.com/go-delve/delve/pkg/proc"
     6  )
     7  
     8  func (t *nativeThread) restoreRegisters(savedRegs proc.Registers) error {
     9  	return fmt.Errorf("restore regs not supported on i386")
    10  }