summaryrefslogtreecommitdiff
path: root/honggfuzz.h
diff options
context:
space:
mode:
authorRobert Swiecki <robert@swiecki.net>2020-03-28 09:08:44 +0100
committerRobert Swiecki <robert@swiecki.net>2020-03-28 09:08:44 +0100
commit5d72415ca4c65c5839396b4699221afea716d8b1 (patch)
tree48b0f1d947641f3fa62a870138c62ba5319bc8fe /honggfuzz.h
parentf461c8281941279e880edc6683a4ad4e985fc8b0 (diff)
downloadhonggfuzz-5d72415ca4c65c5839396b4699221afea716d8b1.tar.gz
honggfuzz.h: remove unused struct definitions
Diffstat (limited to 'honggfuzz.h')
-rw-r--r--honggfuzz.h33
1 files changed, 0 insertions, 33 deletions
diff --git a/honggfuzz.h b/honggfuzz.h
index 447cbd63..88897bcf 100644
--- a/honggfuzz.h
+++ b/honggfuzz.h
@@ -124,39 +124,6 @@ typedef struct {
uint64_t softCntCmp;
} hwcnt_t;
-typedef struct {
- uint32_t capacity;
- uint32_t* pChunks;
- uint32_t nChunks;
-} bitmap_t;
-
-/* Memory map struct */
-typedef struct __attribute__((packed)) {
- uint64_t start; // region start addr
- uint64_t end; // region end addr
- uint64_t base; // region base addr
- char module[NAME_MAX]; // bin/DSO name
- uint64_t bbCnt;
- uint64_t newBBCnt;
-} memMap_t;
-
-/* Trie node data struct */
-typedef struct __attribute__((packed)) {
- bitmap_t* pBM;
-} trieData_t;
-
-/* Trie node struct */
-typedef struct node {
- char key;
- trieData_t data;
- struct node* next;
- struct node* prev;
- struct node* children;
- struct node* parent;
-} node_t;
-
-/* EOF Sanitizer coverage specific data structures */
-
typedef enum {
_HF_STATE_UNSET = 0,
_HF_STATE_STATIC,