about summary refs log tree commit diff
path: root/frida_mode/include
diff options
context:
space:
mode:
authorvan Hauser <vh@thc.org>2021-08-27 17:06:46 +0200
committerGitHub <noreply@github.com>2021-08-27 17:06:46 +0200
commit353d402aaf9296c7dbd47e66fbbc6e59179c4e44 (patch)
tree0ba644854a6d51cdc9e8a2d52ca88b549109f736 /frida_mode/include
parent2e15661f184c77ac1fbb6f868c894e946cbb7f17 (diff)
parent7a2f81e0d992cf0f20d8d2fed26310c03c8b4fa9 (diff)
downloadafl++-353d402aaf9296c7dbd47e66fbbc6e59179c4e44.tar.gz
Merge pull request #1077 from AFLplusplus/dev
push to stable
Diffstat (limited to 'frida_mode/include')
-rw-r--r--frida_mode/include/instrument.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/frida_mode/include/instrument.h b/frida_mode/include/instrument.h
index 2e8d6b6d..909b2a2c 100644
--- a/frida_mode/include/instrument.h
+++ b/frida_mode/include/instrument.h
@@ -12,6 +12,7 @@ extern gboolean         instrument_optimize;
 extern gboolean         instrument_unique;
 extern __thread guint64 instrument_previous_pc;
 extern guint64          instrument_hash_zero;
+extern char *           instrument_coverage_unstable_filename;
 
 extern gboolean instrument_use_fixed_seed;
 extern guint64  instrument_fixed_seed;
@@ -44,6 +45,10 @@ void instrument_coverage_init(void);
 void instrument_coverage_start(uint64_t address);
 void instrument_coverage_end(uint64_t address);
 
+void instrument_coverage_unstable(guint64 edge, guint64 previous_rip,
+                                  guint64 previous_end, guint64 current_rip,
+                                  guint64 current_end);
+
 void instrument_on_fork();
 
 guint64 instrument_get_offset_hash(GumAddress current_rip);