Changeset 77658 in vbox for trunk/include/iprt/fuzz.h
- Timestamp:
- Mar 11, 2019 8:15:55 PM (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/fuzz.h
r77544 r77658 93 93 94 94 95 /** 96 * Fuzzing context statistics. 97 */ 98 typedef struct RTFUZZCTXSTATS 99 { 100 /** Amount of memory currently allocated. */ 101 size_t cbMemory; 102 /** Number of mutations accumulated in the corpus. */ 103 uint64_t cMutations; 104 } RTFUZZCTXSTATS; 105 /** Pointer to fuzzing context statistics. */ 106 typedef RTFUZZCTXSTATS *PRTFUZZCTXSTATS; 107 108 95 109 /** @name RTFUZZCTX_F_XXX - Flags for RTFuzzCtxCfgSetBehavioralFlags 96 110 * @{ */ … … 183 197 */ 184 198 RTDECL(uint32_t) RTFuzzCtxRelease(RTFUZZCTX hFuzzCtx); 199 200 /** 201 * Queries statistics about the given fuzzing context. 202 * 203 * @returns IPRT status code. 204 * @param hFuzzCtx Handle of the fuzzing context. 205 * @param pStats Where to store the stats on success. 206 */ 207 RTDECL(int) RTFuzzCtxQueryStats(RTFUZZCTX hFuzzCtx, PRTFUZZCTXSTATS pStats); 185 208 186 209 /**
Note:
See TracChangeset
for help on using the changeset viewer.