summaryrefslogtreecommitdiff
path: root/src/VBox/Runtime/common/fuzz
diff options
context:
space:
mode:
Diffstat (limited to 'src/VBox/Runtime/common/fuzz')
-rw-r--r--src/VBox/Runtime/common/fuzz/fuzz-config.cpp1
-rw-r--r--src/VBox/Runtime/common/fuzz/fuzz-observer.cpp1
-rw-r--r--src/VBox/Runtime/common/fuzz/fuzz-target-recorder.cpp4
-rw-r--r--src/VBox/Runtime/common/fuzz/fuzz.cpp6
-rw-r--r--src/VBox/Runtime/common/fuzz/fuzzmastercmd.cpp3
5 files changed, 0 insertions, 15 deletions
diff --git a/src/VBox/Runtime/common/fuzz/fuzz-config.cpp b/src/VBox/Runtime/common/fuzz/fuzz-config.cpp
index a05ea19b99b..d9d71bc080f 100644
--- a/src/VBox/Runtime/common/fuzz/fuzz-config.cpp
+++ b/src/VBox/Runtime/common/fuzz/fuzz-config.cpp
@@ -519,7 +519,6 @@ static int rtFuzzCfgAddFuzzCtxInputs(PRTFUZZCFGINT pThis, RTJSONVAL hJsonValCorp
/**
* Destroys the given fuzzing config.
*
- * @returns nothing.
* @param pThis The fuzzing config instance to destroy.
*/
static void rtFuzzCfgDestroy(PRTFUZZCFGINT pThis)
diff --git a/src/VBox/Runtime/common/fuzz/fuzz-observer.cpp b/src/VBox/Runtime/common/fuzz/fuzz-observer.cpp
index 8ee09bb28d7..9e4941394a3 100644
--- a/src/VBox/Runtime/common/fuzz/fuzz-observer.cpp
+++ b/src/VBox/Runtime/common/fuzz/fuzz-observer.cpp
@@ -438,7 +438,6 @@ static int rtFuzzObsExecCtxCreate(PPRTFUZZOBSEXECCTX ppExecCtx, PRTFUZZOBSINT pT
/**
* Destroys the given execution context.
*
- * @returns nothing.
* @param pThis The internal fuzzing observer state.
* @param pExecCtx The execution context to destroy.
*/
diff --git a/src/VBox/Runtime/common/fuzz/fuzz-target-recorder.cpp b/src/VBox/Runtime/common/fuzz/fuzz-target-recorder.cpp
index c2446ed4772..04d3c89a11f 100644
--- a/src/VBox/Runtime/common/fuzz/fuzz-target-recorder.cpp
+++ b/src/VBox/Runtime/common/fuzz/fuzz-target-recorder.cpp
@@ -184,7 +184,6 @@ typedef struct RTFUZZTGTRECINT
/**
* Initializes the given stdout/stderr buffer.
*
- * @returns nothing.
* @param pBuf The buffer to initialize.
*/
static void rtFuzzTgtStdOutErrBufInit(PRTFUZZTGTSTDOUTERRBUF pBuf)
@@ -198,7 +197,6 @@ static void rtFuzzTgtStdOutErrBufInit(PRTFUZZTGTSTDOUTERRBUF pBuf)
/**
* Frees all allocated resources in the given stdout/stderr buffer.
*
- * @returns nothing.
* @param pBuf The buffer to free.
*/
static void rtFuzzTgtStdOutErrBufFree(PRTFUZZTGTSTDOUTERRBUF pBuf)
@@ -357,7 +355,6 @@ static int rtFuzzTgtRecScanStateForNewEdges(PRTFUZZTGTRECINT pThis, PRTFUZZTGTST
/**
* Destorys the given fuzzer target recorder freeing all allocated resources.
*
- * @returns nothing.
* @param pThis The fuzzer target recorder instance.
*/
static void rtFuzzTgtRecDestroy(PRTFUZZTGTRECINT pThis)
@@ -369,7 +366,6 @@ static void rtFuzzTgtRecDestroy(PRTFUZZTGTRECINT pThis)
/**
* Destroys the given fuzzer target state freeing all allocated resources.
*
- * @returns nothing.
* @param pThis The fuzzed target state instance.
*/
static void rtFuzzTgtStateDestroy(PRTFUZZTGTSTATEINT pThis)
diff --git a/src/VBox/Runtime/common/fuzz/fuzz.cpp b/src/VBox/Runtime/common/fuzz/fuzz.cpp
index 5fe237e3104..cafd459efd4 100644
--- a/src/VBox/Runtime/common/fuzz/fuzz.cpp
+++ b/src/VBox/Runtime/common/fuzz/fuzz.cpp
@@ -574,7 +574,6 @@ static void *rtFuzzCtxMemoryAlloc(PRTFUZZCTXINT pThis, size_t cb)
/**
* Frees the given memory.
*
- * @returns nothing.
* @param pThis The fuzzer context instance.
* @param pv Pointer to the memory area to free.
*/
@@ -619,7 +618,6 @@ static bool rtFuzzCtxMutationAllocReclaim(PRTFUZZCTXINT pThis, size_t cb)
/**
* Updates the cache status of the given mutation.
*
- * @returns nothing.
* @param pThis The fuzzer context instance.
* @param pMutation The mutation to update.
*/
@@ -654,7 +652,6 @@ static void rtFuzzCtxMutationMaybeEnterCache(PRTFUZZCTXINT pThis, PRTFUZZMUTATIO
/**
* Removes a cached mutation from the cache.
*
- * @returns nothing.
* @param pThis The fuzzer context instance.
* @param pMutation The mutation to remove.
*/
@@ -674,7 +671,6 @@ static void rtFuzzCtxMutationCacheRemove(PRTFUZZCTXINT pThis, PRTFUZZMUTATION pM
/**
* Destroys the given mutation.
*
- * @returns nothing.
* @param pMutation The mutation to destroy.
*/
static void rtFuzzMutationDestroy(PRTFUZZMUTATION pMutation)
@@ -869,7 +865,6 @@ DECLINLINE(PRTFUZZMUTATION) rtFuzzMutationCreate(PRTFUZZCTXINT pThis, uint64_t o
/**
* Destroys the given fuzzer context freeing all allocated resources.
*
- * @returns nothing.
* @param pThis The fuzzer context instance.
*/
static void rtFuzzCtxDestroy(PRTFUZZCTXINT pThis)
@@ -1512,7 +1507,6 @@ static int rtFuzzCtxCreateEmpty(PRTFUZZCTXINT *ppThis, RTFUZZCTXTYPE enmType)
/**
* Destroys the given fuzzing input.
*
- * @returns nothing.
* @param pThis The fuzzing input to destroy.
*/
static void rtFuzzInputDestroy(PRTFUZZINPUTINT pThis)
diff --git a/src/VBox/Runtime/common/fuzz/fuzzmastercmd.cpp b/src/VBox/Runtime/common/fuzz/fuzzmastercmd.cpp
index 5488630afd0..ec8b306d935 100644
--- a/src/VBox/Runtime/common/fuzz/fuzzmastercmd.cpp
+++ b/src/VBox/Runtime/common/fuzz/fuzzmastercmd.cpp
@@ -1579,7 +1579,6 @@ static int rtFuzzCmdMasterFuzzCfgLoadFromFile(PRTFUZZCMDMASTER pThis, const char
/**
* Destroys all running fuzzers for the given master state.
*
- * @returns nothing.
* @param pThis The fuzzing master command state.
*/
static void rtFuzzCmdMasterDestroy(PRTFUZZCMDMASTER pThis)
@@ -1591,7 +1590,6 @@ static void rtFuzzCmdMasterDestroy(PRTFUZZCMDMASTER pThis)
/**
* Sends an ACK response to the client.
*
- * @returns nothing.
* @param hSocket The socket handle to send the ACK to.
* @param pszResponse Additional response data.
*/
@@ -1622,7 +1620,6 @@ static void rtFuzzCmdMasterTcpSendAck(RTSOCKET hSocket, const char *pszResponse)
/**
* Sends an NACK response to the client.
*
- * @returns nothing.
* @param hSocket The socket handle to send the ACK to.
* @param pErrInfo Optional error information to send along.
*/