mirror of
git://gcc.gnu.org/git/gcc.git
synced 2025-04-04 14:51:06 +08:00
syscall: enable ParseDirent for AIX
Reviewed-on: https://go-review.googlesource.com/64990 From-SVN: r253022
This commit is contained in:
parent
5e525857e9
commit
836cccc71d
@ -1,4 +1,4 @@
|
||||
84f827669dc76326ed99ebcc982c482aa148d8d8
|
||||
5deeab42b0e5fdf2721773ce7fdaf61716599d4d
|
||||
|
||||
The first line of this file holds the git revision number of the last
|
||||
merge done from the gofrontend repository.
|
||||
|
@ -2,7 +2,7 @@
|
||||
// Use of this source code is governed by a BSD-style
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
// +build darwin dragonfly freebsd linux nacl netbsd openbsd solaris
|
||||
// +build aix darwin dragonfly freebsd linux nacl netbsd openbsd solaris
|
||||
|
||||
package syscall
|
||||
|
||||
|
19
libgo/go/syscall/syscall_aix.go
Normal file
19
libgo/go/syscall/syscall_aix.go
Normal file
@ -0,0 +1,19 @@
|
||||
// Copyright 2017 The Go Authors. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
package syscall
|
||||
|
||||
import "unsafe"
|
||||
|
||||
func direntIno(buf []byte) (uint64, bool) {
|
||||
return readInt(buf, unsafe.Offsetof(Dirent{}.Ino), unsafe.Sizeof(Dirent{}.Ino))
|
||||
}
|
||||
|
||||
func direntReclen(buf []byte) (uint64, bool) {
|
||||
return readInt(buf, unsafe.Offsetof(Dirent{}.Reclen), unsafe.Sizeof(Dirent{}.Reclen))
|
||||
}
|
||||
|
||||
func direntNamlen(buf []byte) (uint64, bool) {
|
||||
return readInt(buf, unsafe.Offsetof(Dirent{}.Namlen), unsafe.Sizeof(Dirent{}.Namlen))
|
||||
}
|
@ -485,6 +485,7 @@ fi | sed -e 's/type _dirent64/type Dirent/' \
|
||||
-e 's/d_name/Name/' \
|
||||
-e 's/]int8/]byte/' \
|
||||
-e 's/d_ino/Ino/' \
|
||||
-e 's/d_namlen/Namlen/' \
|
||||
-e 's/d_off/Off/' \
|
||||
-e 's/d_reclen/Reclen/' \
|
||||
-e 's/d_type/Type/' \
|
||||
|
Loading…
x
Reference in New Issue
Block a user