Source file
src/syscall/syscall_linux_arm64.go
1
2
3
4
5 package syscall
6
7 import "unsafe"
8
9 const (
10 _SYS_setgroups = SYS_SETGROUPS
11 _SYS_clone3 = 435
12 _SYS_faccessat2 = 439
13 _SYS_fchmodat2 = 452
14 )
15
16
17
18
19
20
21 func Fstatat(fd int, path string, stat *Stat_t, flags int) error {
22 return fstatat(fd, path, stat, flags)
23 }
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44 func Stat(path string, stat *Stat_t) (err error) {
45 return fstatat(_AT_FDCWD, path, stat, 0)
46 }
47
48 func Lchown(path string, uid int, gid int) (err error) {
49 return Fchownat(_AT_FDCWD, path, uid, gid, _AT_SYMLINK_NOFOLLOW)
50 }
51
52 func Lstat(path string, stat *Stat_t) (err error) {
53 return fstatat(_AT_FDCWD, path, stat, _AT_SYMLINK_NOFOLLOW)
54 }
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75 type sigset_t struct {
76 X__val [16]uint64
77 }
78
79
80
81 func Select(nfd int, r *FdSet, w *FdSet, e *FdSet, timeout *Timeval) (n int, err error) {
82 var ts *Timespec
83 if timeout != nil {
84 ts = &Timespec{Sec: timeout.Sec, Nsec: timeout.Usec * 1000}
85 }
86 return pselect(nfd, r, w, e, ts, nil)
87 }
88
89
90
91 func setTimespec(sec, nsec int64) Timespec {
92 return Timespec{Sec: sec, Nsec: nsec}
93 }
94
95 func setTimeval(sec, usec int64) Timeval {
96 return Timeval{Sec: sec, Usec: usec}
97 }
98
99 func futimesat(dirfd int, path string, tv *[2]Timeval) (err error) {
100 if tv == nil {
101 return utimensat(dirfd, path, nil, 0)
102 }
103
104 ts := []Timespec{
105 NsecToTimespec(TimevalToNsec(tv[0])),
106 NsecToTimespec(TimevalToNsec(tv[1])),
107 }
108 return utimensat(dirfd, path, (*[2]Timespec)(unsafe.Pointer(&ts[0])), 0)
109 }
110
111 func Time(t *Time_t) (Time_t, error) {
112 var tv Timeval
113 err := Gettimeofday(&tv)
114 if err != nil {
115 return 0, err
116 }
117 if t != nil {
118 *t = Time_t(tv.Sec)
119 }
120 return Time_t(tv.Sec), nil
121 }
122
123 func Utime(path string, buf *Utimbuf) error {
124 tv := []Timeval{
125 {Sec: buf.Actime},
126 {Sec: buf.Modtime},
127 }
128 return Utimes(path, tv)
129 }
130
131 func utimes(path string, tv *[2]Timeval) (err error) {
132 if tv == nil {
133 return utimensat(_AT_FDCWD, path, nil, 0)
134 }
135
136 ts := []Timespec{
137 NsecToTimespec(TimevalToNsec(tv[0])),
138 NsecToTimespec(TimevalToNsec(tv[1])),
139 }
140 return utimensat(_AT_FDCWD, path, (*[2]Timespec)(unsafe.Pointer(&ts[0])), 0)
141 }
142
143
144 func Getrlimit(resource int, rlim *Rlimit) error {
145 err := prlimit(0, resource, nil, rlim)
146 if err != ENOSYS {
147 return err
148 }
149 return getrlimit(resource, rlim)
150 }
151
152
153 func setrlimit(resource int, rlim *Rlimit) error {
154 err := prlimit(0, resource, rlim, nil)
155 if err != ENOSYS {
156 return err
157 }
158 return setrlimit1(resource, rlim)
159 }
160
161
162 func rawSetrlimit(resource int, rlim *Rlimit) Errno {
163 _, _, errno := RawSyscall6(SYS_PRLIMIT64, 0, uintptr(resource), uintptr(unsafe.Pointer(rlim)), 0, 0, 0)
164 if errno != ENOSYS {
165 return errno
166 }
167 _, _, errno = RawSyscall(SYS_SETRLIMIT, uintptr(resource), uintptr(unsafe.Pointer(rlim)), 0)
168 return errno
169 }
170
171 func (r *PtraceRegs) PC() uint64 { return r.Pc }
172
173 func (r *PtraceRegs) SetPC(pc uint64) { r.Pc = pc }
174
175 func (iov *Iovec) SetLen(length int) {
176 iov.Len = uint64(length)
177 }
178
179 func (msghdr *Msghdr) SetControllen(length int) {
180 msghdr.Controllen = uint64(length)
181 }
182
183 func (cmsg *Cmsghdr) SetLen(length int) {
184 cmsg.Len = uint64(length)
185 }
186
187 func InotifyInit() (fd int, err error) {
188 return InotifyInit1(0)
189 }
190
191
192
193 func Pause() error {
194 _, err := ppoll(nil, 0, nil, nil)
195 return err
196 }
197
View as plain text