mirror of
https://github.com/netbirdio/gvisor.git
synced 2026-05-22 17:12:49 -07:00
Merge pull request #4035 from lubinszARM:pr_misc_01
PiperOrigin-RevId: 335051794
This commit is contained in:
@@ -154,6 +154,7 @@ func (s State) Proto() *rpb.Registers {
|
||||
Sp: s.Regs.Sp,
|
||||
Pc: s.Regs.Pc,
|
||||
Pstate: s.Regs.Pstate,
|
||||
Tls: s.Regs.TPIDR_EL0,
|
||||
}
|
||||
return &rpb.Registers{Arch: &rpb.Registers_Arm64{Arm64: regs}}
|
||||
}
|
||||
@@ -232,6 +233,7 @@ func (s *State) RegisterMap() (map[string]uintptr, error) {
|
||||
"Sp": uintptr(s.Regs.Sp),
|
||||
"Pc": uintptr(s.Regs.Pc),
|
||||
"Pstate": uintptr(s.Regs.Pstate),
|
||||
"Tls": uintptr(s.Regs.TPIDR_EL0),
|
||||
}, nil
|
||||
}
|
||||
|
||||
|
||||
@@ -83,6 +83,7 @@ message ARM64Registers {
|
||||
uint64 sp = 32;
|
||||
uint64 pc = 33;
|
||||
uint64 pstate = 34;
|
||||
uint64 tls = 35;
|
||||
}
|
||||
message Registers {
|
||||
oneof arch {
|
||||
|
||||
@@ -527,8 +527,8 @@ var ARM64 = &kernel.SyscallTable{
|
||||
96: syscalls.Supported("set_tid_address", SetTidAddress),
|
||||
97: syscalls.PartiallySupported("unshare", Unshare, "Mount, cgroup namespaces not supported. Network namespaces supported but must be empty.", nil),
|
||||
98: syscalls.PartiallySupported("futex", Futex, "Robust futexes not supported.", nil),
|
||||
99: syscalls.Error("set_robust_list", syserror.ENOSYS, "Obsolete.", nil),
|
||||
100: syscalls.Error("get_robust_list", syserror.ENOSYS, "Obsolete.", nil),
|
||||
99: syscalls.Supported("set_robust_list", SetRobustList),
|
||||
100: syscalls.Supported("get_robust_list", GetRobustList),
|
||||
101: syscalls.Supported("nanosleep", Nanosleep),
|
||||
102: syscalls.Supported("getitimer", Getitimer),
|
||||
103: syscalls.Supported("setitimer", Setitimer),
|
||||
|
||||
@@ -227,6 +227,7 @@ func Override() {
|
||||
s.Table[76] = syscalls.Supported("splice", Splice)
|
||||
s.Table[77] = syscalls.Supported("tee", Tee)
|
||||
s.Table[78] = syscalls.Supported("readlinkat", Readlinkat)
|
||||
s.Table[79] = syscalls.Supported("newfstatat", Newfstatat)
|
||||
s.Table[80] = syscalls.Supported("fstat", Fstat)
|
||||
s.Table[81] = syscalls.Supported("sync", Sync)
|
||||
s.Table[82] = syscalls.Supported("fsync", Fsync)
|
||||
|
||||
Reference in New Issue
Block a user