Bump helm.sh/helm/v3 from 3.10.3 to 3.11.1 (#5528)
This commit is contained in:
27
vendor/github.com/edsrzf/mmap-go/mmap_plan9.go
generated
vendored
Normal file
27
vendor/github.com/edsrzf/mmap-go/mmap_plan9.go
generated
vendored
Normal file
@@ -0,0 +1,27 @@
|
||||
// Copyright 2020 Evan Shaw. All rights reserved.
|
||||
// Use of this source code is governed by a BSD-style
|
||||
// license that can be found in the LICENSE file.
|
||||
|
||||
package mmap
|
||||
|
||||
import "syscall"
|
||||
|
||||
func mmap(len int, inprot, inflags, fd uintptr, off int64) ([]byte, error) {
|
||||
return nil, syscall.EPLAN9
|
||||
}
|
||||
|
||||
func (m MMap) flush() error {
|
||||
return syscall.EPLAN9
|
||||
}
|
||||
|
||||
func (m MMap) lock() error {
|
||||
return syscall.EPLAN9
|
||||
}
|
||||
|
||||
func (m MMap) unlock() error {
|
||||
return syscall.EPLAN9
|
||||
}
|
||||
|
||||
func (m MMap) unmap() error {
|
||||
return syscall.EPLAN9
|
||||
}
|
||||
Reference in New Issue
Block a user