summaryrefslogtreecommitdiff
path: root/honggfuzz.h
diff options
context:
space:
mode:
Diffstat (limited to 'honggfuzz.h')
-rw-r--r--honggfuzz.h9
1 files changed, 6 insertions, 3 deletions
diff --git a/honggfuzz.h b/honggfuzz.h
index 4d1b3a33..c64ba62e 100644
--- a/honggfuzz.h
+++ b/honggfuzz.h
@@ -192,8 +192,6 @@ typedef struct {
long tmOut;
time_t runEndTime;
size_t mutationsMax;
- size_t threadsMax;
- size_t threadsFinished;
size_t maxFileSz;
char* reportFile;
uint64_t asLimit;
@@ -204,11 +202,16 @@ typedef struct {
bool skipFeedbackOnTimeout;
bool enableSanitizers;
bool monitorSIGABRT;
- uint32_t threadsActiveCnt;
pid_t mainPid;
bool terminating;
bool exitUponCrash;
+ struct {
+ size_t threadsMax;
+ size_t threadsFinished;
+ uint32_t threadsActiveCnt;
+ } threads;
+
const char* dictionaryFile;
TAILQ_HEAD(strq_t, strings_t) dictq;
size_t dictionaryCnt;