Files
sliverarmory-reflektor/memmod/memmod_linux_cacheflush_coherent.go

9 lines
157 B
Go

//go:build linux && !android && (386 || amd64)
package memmod
func flushLinuxInstructionCache(start, end uintptr) error {
_, _ = start, end
return nil
}