diff options
author | gVisor bot <gvisor-bot@google.com> | 2020-02-25 21:44:34 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-02-25 21:44:34 +0000 |
commit | d2b2e5e17a8664653211e763204cc01b78b5c7a9 (patch) | |
tree | 15137ee2d726c286e6d144eb46beb3098c88e04c /pkg/sentry/arch | |
parent | ed9085d4e5d4944ab662a58ee3a33d3b5210bd3e (diff) | |
parent | 430992a67abe30dc6cb4e00822517c0aed388088 (diff) |
Merge release-20200219.0-39-g430992a (automated)
Diffstat (limited to 'pkg/sentry/arch')
-rwxr-xr-x | pkg/sentry/arch/arch_aarch64.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pkg/sentry/arch/arch_aarch64.go b/pkg/sentry/arch/arch_aarch64.go index 3b6987665..d7794db63 100755 --- a/pkg/sentry/arch/arch_aarch64.go +++ b/pkg/sentry/arch/arch_aarch64.go @@ -34,6 +34,9 @@ const ( SyscallWidth = 4 ) +// ARMTrapFlag is the mask for the trap flag. +const ARMTrapFlag = uint64(1) << 21 + // aarch64FPState is aarch64 floating point state. type aarch64FPState []byte |