mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2024-11-01 15:00:00 +00:00
57dc742c76
Bumps [github.com/KimMachineGun/automemlimit](https://github.com/KimMachineGun/automemlimit) from 0.2.4 to 0.2.5. - [Release notes](https://github.com/KimMachineGun/automemlimit/releases) - [Commits](https://github.com/KimMachineGun/automemlimit/compare/v0.2.4...v0.2.5) --- updated-dependencies: - dependency-name: github.com/KimMachineGun/automemlimit dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
39 lines
872 B
Go
39 lines
872 B
Go
package sys
|
|
|
|
import (
|
|
"unsafe"
|
|
|
|
"github.com/cilium/ebpf/internal/unix"
|
|
)
|
|
|
|
// NewPointer creates a 64-bit pointer from an unsafe Pointer.
|
|
func NewPointer(ptr unsafe.Pointer) Pointer {
|
|
return Pointer{ptr: ptr}
|
|
}
|
|
|
|
// NewSlicePointer creates a 64-bit pointer from a byte slice.
|
|
func NewSlicePointer(buf []byte) Pointer {
|
|
if len(buf) == 0 {
|
|
return Pointer{}
|
|
}
|
|
|
|
return Pointer{ptr: unsafe.Pointer(&buf[0])}
|
|
}
|
|
|
|
// NewSlicePointer creates a 64-bit pointer from a byte slice.
|
|
//
|
|
// Useful to assign both the pointer and the length in one go.
|
|
func NewSlicePointerLen(buf []byte) (Pointer, uint32) {
|
|
return NewSlicePointer(buf), uint32(len(buf))
|
|
}
|
|
|
|
// NewStringPointer creates a 64-bit pointer from a string.
|
|
func NewStringPointer(str string) Pointer {
|
|
p, err := unix.BytePtrFromString(str)
|
|
if err != nil {
|
|
return Pointer{}
|
|
}
|
|
|
|
return Pointer{ptr: unsafe.Pointer(p)}
|
|
}
|