summaryrefslogtreecommitdiff
path: root/honggfuzz.h
diff options
context:
space:
mode:
authorRobert Swiecki <robert@swiecki.net>2020-03-27 19:08:56 +0100
committerRobert Swiecki <robert@swiecki.net>2020-03-27 23:09:27 +0100
commit0eeb8c7c1e91fb34ef3a29977c36f563fb7d4ab5 (patch)
tree8348faa00cc84d2d4283b90f28315d48af4516fe /honggfuzz.h
parentdf32765afd2359e29d5eb41da961fbf469f4e84b (diff)
downloadhonggfuzz-0eeb8c7c1e91fb34ef3a29977c36f563fb7d4ab5.tar.gz
input: compute the likelyhood of an input being tested on the basis of more params (no. of backreferenced, exec time, and freshness)
Diffstat (limited to 'honggfuzz.h')
-rw-r--r--honggfuzz.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/honggfuzz.h b/honggfuzz.h
index 96f8e1df..447cbd63 100644
--- a/honggfuzz.h
+++ b/honggfuzz.h
@@ -172,6 +172,8 @@ struct _dynfile_t {
int fd;
uint64_t timeExecMillis;
char path[PATH_MAX];
+ struct _dynfile_t* src;
+ uint32_t refs;
uint8_t* data;
TAILQ_ENTRY(_dynfile_t) pointers;
};