mirror of
https://github.com/AFLplusplus/AFLplusplus.git
synced 2025-06-14 19:08:08 +00:00
Removed use of 'realpath' in makefiles to fix OSX incompatibility Fixed handling of when prefetching should be enabled Snap the main binary during initialization to avoid stability issues with lazy loading Add support for configurable inline cache entries for FRIDA on x86/x64 Support for prefetching FRIDA backpatches on x86/x64 Improved stats support on x86/x64/aarch64
22 lines
395 B
C
22 lines
395 B
C
#ifndef _RANGES_H
|
|
#define _RANGES_H
|
|
|
|
#include "frida-gumjs.h"
|
|
|
|
extern gboolean ranges_debug_maps;
|
|
extern gboolean ranges_inst_libs;
|
|
extern gboolean ranges_inst_jit;
|
|
|
|
void ranges_config(void);
|
|
void ranges_init(void);
|
|
|
|
gboolean range_is_excluded(GumAddress address);
|
|
|
|
void ranges_exclude();
|
|
|
|
void ranges_add_include(GumMemoryRange *range);
|
|
void ranges_add_exclude(GumMemoryRange *range);
|
|
|
|
#endif
|
|
|