diff options
| author | Your Name <you@example.com> | 2021-08-20 17:28:40 +0100 |
|---|---|---|
| committer | Your Name <you@example.com> | 2021-08-20 17:28:40 +0100 |
| commit | 028f8ced8f772d82a7efc522ec629bf4a5fff32d (patch) | |
| tree | f5440087d2779984812b5e8c50f1fda6bdbb489b /frida_mode/include/stalker.h | |
| parent | 3513ba2e51222151945e8ae87236bb9d2f07f37a (diff) | |
| download | afl++-028f8ced8f772d82a7efc522ec629bf4a5fff32d.tar.gz | |
Fixed coverage on OSX (dependency on pipe2)
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
Diffstat (limited to 'frida_mode/include/stalker.h')
| -rw-r--r-- | frida_mode/include/stalker.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/frida_mode/include/stalker.h b/frida_mode/include/stalker.h index b5e05d5a..955f3913 100644 --- a/frida_mode/include/stalker.h +++ b/frida_mode/include/stalker.h @@ -3,11 +3,15 @@ #include "frida-gumjs.h" +extern guint stalker_ic_entries; + void stalker_config(void); void stalker_init(void); GumStalker *stalker_get(void); void stalker_start(void); void stalker_trust(void); +GumStalkerObserver *stalker_get_observer(void); + #endif |
