diff options
| author | van Hauser <vh@thc.org> | 2021-08-18 10:16:22 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-08-18 10:16:22 +0200 |
| commit | dbb793646e8ea0998c747bd1450a29d18737dcbd (patch) | |
| tree | cd0dcdb171c55f2973b711b1d5fc8d2f6b5aabd1 /frida_mode/include | |
| parent | 69b7f2cae4fbb1ad34fd6a01aa0056126d7609d0 (diff) | |
| parent | 10c98c2a4c6ef73e25d460933eeda60e320c9bbf (diff) | |
| download | afl++-dbb793646e8ea0998c747bd1450a29d18737dcbd.tar.gz | |
Merge pull request #1071 from WorksButNotTested/many-local
Many local
Diffstat (limited to 'frida_mode/include')
| -rw-r--r-- | frida_mode/include/instrument.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/frida_mode/include/instrument.h b/frida_mode/include/instrument.h index 29f14da9..2e8d6b6d 100644 --- a/frida_mode/include/instrument.h +++ b/frida_mode/include/instrument.h @@ -6,6 +6,7 @@ #include "config.h" extern char * instrument_debug_filename; +extern char * instrument_coverage_filename; extern gboolean instrument_tracing; extern gboolean instrument_optimize; extern gboolean instrument_unique; @@ -38,6 +39,11 @@ void instrument_debug_end(GumStalkerOutput *output); void instrument_flush(GumStalkerOutput *output); gpointer instrument_cur(GumStalkerOutput *output); +void instrument_coverage_config(void); +void instrument_coverage_init(void); +void instrument_coverage_start(uint64_t address); +void instrument_coverage_end(uint64_t address); + void instrument_on_fork(); guint64 instrument_get_offset_hash(GumAddress current_rip); |
