mirror of
https://github.com/netbirdio/gvisor.git
synced 2026-05-22 17:12:49 -07:00
Internal changes
PiperOrigin-RevId: 366344805
This commit is contained in:
committed by
gVisor bot
parent
513de4039c
commit
b2ea37401e
@@ -61,3 +61,8 @@ func (p *PtraceRegs) InstructionPointer() uint64 {
|
||||
func (p *PtraceRegs) StackPointer() uint64 {
|
||||
return p.Rsp
|
||||
}
|
||||
|
||||
// SetStackPointer sets the stack pointer to the specified value.
|
||||
func (p *PtraceRegs) SetStackPointer(sp uint64) {
|
||||
p.Rsp = sp
|
||||
}
|
||||
|
||||
@@ -38,3 +38,8 @@ func (p *PtraceRegs) InstructionPointer() uint64 {
|
||||
func (p *PtraceRegs) StackPointer() uint64 {
|
||||
return p.Sp
|
||||
}
|
||||
|
||||
// SetStackPointer sets the stack pointer to the specified value.
|
||||
func (p *PtraceRegs) SetStackPointer(sp uint64) {
|
||||
p.Sp = sp
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user