mirror of
https://github.com/sliverarmory/reflektor
synced 2026-08-25 09:14:48 +00:00
c7ee9636e9
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.
9 lines
181 B
Go
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
|
|
}
|