Changeset 72571 in vbox for trunk/include
- Timestamp:
- Jun 15, 2018 8:36:17 PM (7 years ago)
- svn:sync-xref-src-repo-rev:
- 123065
- Location:
- trunk/include/iprt
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/fuzz.h
r72465 r72571 150 150 151 151 /** 152 * Adds a new seed to the input corpus of the given fuzzing context from the given VFS file. 153 * 154 * @returns IPRT status code. 155 * @param hFuzzCtx The fuzzing context handle. 156 * @param hVfsFile The VFS file handle to load the seed from. 157 */ 158 RTDECL(int) RTFuzzCtxCorpusInputAddFromVfsFile(RTFUZZCTX hFuzzCtx, RTVFSFILE hVfsFile); 159 160 /** 152 161 * Adds new seeds to the input corpus of the given fuzzing context from the given directory. 153 162 * … … 368 377 * @param hFuzzObs The fuzzing observer handle. 369 378 * @param cProcs Number of processes to run simulteanously, 370 * 0 will create as man ny processes as there are CPUs available.379 * 0 will create as many processes as there are CPUs available. 371 380 */ 372 381 RTDECL(int) RTFuzzObsExecStart(RTFUZZOBS hFuzzObs, uint32_t cProcs); -
trunk/include/iprt/mangling.h
r72465 r72571 1018 1018 # define RTFuzzCtxCorpusInputAddFromDirPath RT_MANGLER(RTFuzzCtxCorpusInputAddFromDirPath) 1019 1019 # define RTFuzzCtxCorpusInputAddFromFile RT_MANGLER(RTFuzzCtxCorpusInputAddFromFile) 1020 # define RTFuzzCtxCorpusInputAddFromVfsFile RT_MANGLER(RTFuzzCtxCorpusInputAddFromVfsFile) 1020 1021 # define RTFuzzCtxCreate RT_MANGLER(RTFuzzCtxCreate) 1021 1022 # define RTFuzzCtxCreateFromState RT_MANGLER(RTFuzzCtxCreateFromState)
Note:
See TracChangeset
for help on using the changeset viewer.