mirror of https://github.com/hak5/bolt.git
21 lines
439 B
Go
21 lines
439 B
Go
package bolt
|
|
|
|
import (
|
|
"syscall"
|
|
)
|
|
|
|
type _syscall interface {
|
|
Mmap(fd int, offset int64, length int, prot int, flags int) (data []byte, err error)
|
|
Munmap([]byte) error
|
|
}
|
|
|
|
type syssyscall struct{}
|
|
|
|
func (o *syssyscall) Mmap(fd int, offset int64, length int, prot int, flags int) (data []byte, err error) {
|
|
return syscall.Mmap(fd, offset, length, prot, flags)
|
|
}
|
|
|
|
func (o *syssyscall) Munmap(b []byte) error {
|
|
return syscall.Munmap(b)
|
|
}
|