[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

@ -716,20 +716,6 @@ func writelen(fd int, buf *byte, nbuf int) (n int, err error) {
return
}
var mapper = &mmapper{
active: make(map[*byte][]byte),
mmap: mmap,
munmap: munmap,
}
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)
}
// Event Ports
type fileObjCookie struct {