mirror of
https://github.com/sliverarmory/reflektor
synced 2026-08-25 09:14:48 +00:00
9 lines
157 B
Go
9 lines
157 B
Go
//go:build linux && !android && (386 || amd64)
|
|
|
|
package memmod
|
|
|
|
func flushLinuxInstructionCache(start, end uintptr) error {
|
|
_, _ = start, end
|
|
return nil
|
|
}
|