go-randomx/exec.go

16 lines
327 B
Go
Raw Normal View History

package randomx
import "git.gammaspectra.live/P2Pool/go-randomx/v3/internal/memory"
type SuperScalarProgramFunc []byte
2024-04-18 10:09:05 +00:00
type VMProgramFunc []byte
func (f SuperScalarProgramFunc) Close() error {
return memory.FreeSlice(pageAllocator, f)
}
func (f VMProgramFunc) Close() error {
return memory.FreeSlice(pageAllocator, f)
}