summaryrefslogtreecommitdiff
path: root/src/VBox/Runtime/r0drv/nt
diff options
context:
space:
mode:
Diffstat (limited to 'src/VBox/Runtime/r0drv/nt')
-rw-r--r--src/VBox/Runtime/r0drv/nt/alloc-r0drv-nt.cpp15
-rw-r--r--src/VBox/Runtime/r0drv/nt/timer-r0drv-nt.cpp1
2 files changed, 0 insertions, 16 deletions
diff --git a/src/VBox/Runtime/r0drv/nt/alloc-r0drv-nt.cpp b/src/VBox/Runtime/r0drv/nt/alloc-r0drv-nt.cpp
index e161bbf40e9..c5d5fcd9b9e 100644
--- a/src/VBox/Runtime/r0drv/nt/alloc-r0drv-nt.cpp
+++ b/src/VBox/Runtime/r0drv/nt/alloc-r0drv-nt.cpp
@@ -92,15 +92,6 @@ DECLHIDDEN(void) rtR0MemFree(PRTMEMHDR pHdr)
}
-/**
- * Allocates physical contiguous memory (below 4GB).
- * The allocation is page aligned and its contents is undefined.
- *
- * @returns Pointer to the memory block. This is page aligned.
- * @param pPhys Where to store the physical address.
- * @param cb The allocation size in bytes. This is always
- * rounded up to PAGE_SIZE.
- */
RTR0DECL(void *) RTMemContAlloc(PRTCCPHYS pPhys, size_t cb)
{
/*
@@ -142,12 +133,6 @@ RTR0DECL(void *) RTMemContAlloc(PRTCCPHYS pPhys, size_t cb)
}
-/**
- * Frees memory allocated ysing RTMemContAlloc().
- *
- * @param pv Pointer to return from RTMemContAlloc().
- * @param cb The cb parameter passed to RTMemContAlloc().
- */
RTR0DECL(void) RTMemContFree(void *pv, size_t cb)
{
if (pv)
diff --git a/src/VBox/Runtime/r0drv/nt/timer-r0drv-nt.cpp b/src/VBox/Runtime/r0drv/nt/timer-r0drv-nt.cpp
index cf3295e99e9..517b3f86059 100644
--- a/src/VBox/Runtime/r0drv/nt/timer-r0drv-nt.cpp
+++ b/src/VBox/Runtime/r0drv/nt/timer-r0drv-nt.cpp
@@ -312,7 +312,6 @@ static void rtTimerNtRearmInternval(PRTTIMER pTimer, PKDPC pMasterDpc)
/**
* Common timer callback worker for the non-omni timers.
*
- * @returns HRTIMER_NORESTART or HRTIMER_RESTART depending on whether it's a one-shot or interval timer.
* @param pTimer The timer.
*/
static void rtTimerNtSimpleCallbackWorker(PRTTIMER pTimer)