summaryrefslogtreecommitdiffhomepage
path: root/pkg/sentry/arch/arch.go
diff options
context:
space:
mode:
authorgVisor bot <gvisor-bot@google.com>2020-01-06 19:55:51 +0000
committergVisor bot <gvisor-bot@google.com>2020-01-06 19:55:51 +0000
commitfc3664bf86b303d5b9426adf928a5e7b6753969e (patch)
tree3f20350ca49b7d2e421e8f3095a8e6afdd54bde3 /pkg/sentry/arch/arch.go
parentc2ea432ade043b0c908ba546ddda91de8fa83eca (diff)
parent354a15a234c1270bcb9b902503f61835b2ccd2d0 (diff)
Merge release-20191213.0-61-g354a15a (automated)
Diffstat (limited to 'pkg/sentry/arch/arch.go')
-rw-r--r--pkg/sentry/arch/arch.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkg/sentry/arch/arch.go b/pkg/sentry/arch/arch.go
index 498ca4669..81ec98a77 100644
--- a/pkg/sentry/arch/arch.go
+++ b/pkg/sentry/arch/arch.go
@@ -125,9 +125,9 @@ type Context interface {
// SetTLS sets the current TLS pointer. Returns false if value is invalid.
SetTLS(value uintptr) bool
- // SetRSEQInterruptedIP sets the register that contains the old IP when a
- // restartable sequence is interrupted.
- SetRSEQInterruptedIP(value uintptr)
+ // SetOldRSeqInterruptedIP sets the register that contains the old IP
+ // when an "old rseq" restartable sequence is interrupted.
+ SetOldRSeqInterruptedIP(value uintptr)
// StateData returns a pointer to underlying architecture state.
StateData() *State