[chore]: Bump golang.org/x/crypto from 0.11.0 to 0.12.0 (#2077)

This commit is contained in:
dependabot[bot]
2023-08-07 08:13:55 +00:00
committed by GitHub
parent aaa5985d7d
commit 0242f03d36
47 changed files with 443 additions and 139 deletions

View File

@ -147,6 +147,14 @@ func (m *mmapper) Munmap(data []byte) (err error) {
return nil
}
func Mmap(fd int, offset int64, length int, prot int, flags int) (data []byte, err error) {
return mapper.Mmap(fd, offset, length, prot, flags)
}
func Munmap(b []byte) (err error) {
return mapper.Munmap(b)
}
func Read(fd int, p []byte) (n int, err error) {
n, err = read(fd, p)
if raceenabled {