Files
sliverarmory-reflektor/memmod/memmod_linux_cacheflush_coherent.go
moloch-- c7ee9636e9 feat: add FreeBSD amd64 and arm64 support
Enable BOF and ELF shared-library loading on FreeBSD, including recursive dependency handling and exact symbol-version resolution.

Add strict no-skip FreeBSD 15.1 QEMU coverage, a 25-object semantic BOF corpus per architecture, platform documentation, and the verified Sliver compile exception.
2026-08-23 19:00:58 -07:00

9 lines
181 B
Go

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