github.com/undoio/delve@v1.9.0/pkg/proc/native/threads_linux_386.go (about)

     1  package native
     2  
     3  import (
     4  	"fmt"
     5  	"github.com/undoio/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  }