VirtualBox

Changeset 41777 in vbox for trunk/src/VBox/VMM/VMMR0


Ignore:
Timestamp:
Jun 16, 2012 6:49:15 PM (13 years ago)
Author:
vboxsync
Message:

Doxygen.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/VMM/VMMR0/GVMMR0.cpp

    r41069 r41777  
    966966 *
    967967 * @returns VBox status code.
    968  * @param   pVM         Pointer to the shared VM structure.
     968 * @param   pVM         Pointer to the VM.
    969969 */
    970970GVMMR0DECL(int) GVMMR0InitVM(PVM pVM)
     
    10061006 * of the VM.
    10071007 *
    1008  * @param   pVM         Pointer to the shared VM structure.
     1008 * @param   pVM         Pointer to the VM.
    10091009 * @thread  EMT(0)
    10101010 */
     
    10261026 *
    10271027 * @returns true if termination hasn't been done already, false if it has.
    1028  * @param   pVM         Pointer to the shared VM structure.
     1028 * @param   pVM         Pointer to the VM.
    10291029 * @param   pGVM        Pointer to the global VM structure. Optional.
    10301030 * @thread  EMT(0)
     
    15401540 * Lookup a VM by its global handle.
    15411541 *
    1542  * @returns The VM handle on success, NULL on failure.
     1542 * @returns Pointer to the VM on success, NULL on failure.
    15431543 * @param   hGVM    The global VM handle. Asserts on bad handle.
    15441544 */
     
    15571557 * call may or not be an EMT thread.
    15581558 *
    1559  * @returns The VM handle on success, NULL on failure.
     1559 * @returns Pointer to the VM on success, NULL on failure.
    15601560 * @param   hEMT    The native thread handle of the EMT.
    15611561 *                  NIL_RTNATIVETHREAD means the current thread
     
    17551755 * @returns VINF_SUCCESS normal wakeup (timeout or kicked by other thread).
    17561756 *          VERR_INTERRUPTED if a signal was scheduled for the thread.
    1757  * @param   pVM                 Pointer to the shared VM structure.
     1757 * @param   pVM                 Pointer to the VM.
    17581758 * @param   idCpu               The Virtual CPU ID of the calling EMT.
    17591759 * @param   u64ExpireGipTime    The time for the sleep to expire expressed as GIP time.
     
    18901890 * @retval  VINF_GVM_NOT_BLOCKED if the EMT wasn't blocked.
    18911891 *
    1892  * @param   pVM                 Pointer to the shared VM structure.
     1892 * @param   pVM                 Pointer to the VM.
    18931893 * @param   idCpu               The Virtual CPU ID of the EMT to wake up.
    18941894 * @param   fTakeUsedLock       Take the used lock or not
     
    19441944 * @retval  VINF_GVM_NOT_BLOCKED if the EMT wasn't blocked.
    19451945 *
    1946  * @param   pVM                 Pointer to the shared VM structure.
     1946 * @param   pVM                 Pointer to the VM.
    19471947 * @param   idCpu               The Virtual CPU ID of the EMT to wake up.
    19481948 * @thread  Any but EMT.
     
    19621962 *
    19631963 * @param   pGVM                The global (ring-0) VM structure.
    1964  * @param   pVCpu               The Virtual CPU handle.
     1964 * @param   pVCpu               Pointer to the VMCPU.
    19651965 */
    19661966DECLINLINE(int) gvmmR0SchedPokeOne(PGVM pGVM, PVMCPU pVCpu)
     
    19881988 * @retval  VINF_GVM_NOT_BUSY_IN_GC if the EMT wasn't busy in GC.
    19891989 *
    1990  * @param   pVM                 Pointer to the shared VM structure.
     1990 * @param   pVM                 Pointer to the VM.
    19911991 * @param   idCpu               The ID of the virtual CPU to poke.
    19921992 * @param   fTakeUsedLock       Take the used lock or not
     
    20262026 * @retval  VINF_GVM_NOT_BUSY_IN_GC if the EMT wasn't busy in GC.
    20272027 *
    2028  * @param   pVM                 Pointer to the shared VM structure.
     2028 * @param   pVM                 Pointer to the VM.
    20292029 * @param   idCpu               The ID of the virtual CPU to poke.
    20302030 */
     
    20402040 * @returns VBox status code, no informational stuff.
    20412041 *
    2042  * @param   pVM                 Pointer to the shared VM structure.
     2042 * @param   pVM                 Pointer to the VM.
    20432043 * @param   pSleepSet           The set of sleepers to wake up.
    20442044 * @param   pPokeSet            The set of CPUs to poke.
     
    20862086 *
    20872087 * @returns see GVMMR0SchedWakeUpAndPokeCpus.
    2088  * @param   pVM             Pointer to the shared VM structure.
    2089  * @param   pReq            The request packet.
     2088 * @param   pVM             Pointer to the VM.
     2089 * @param   pReq            Pointer to the request packet.
    20902090 */
    20912091GVMMR0DECL(int) GVMMR0SchedWakeUpAndPokeCpusReq(PVM pVM, PGVMMSCHEDWAKEUPANDPOKECPUSREQ pReq)
     
    21102110 * @returns VINF_SUCCESS if not yielded.
    21112111 *          VINF_GVM_YIELDED if an attempt to switch to a different VM task was made.
    2112  * @param   pVM                 Pointer to the shared VM structure.
     2112 * @param   pVM                 Pointer to the VM.
    21132113 * @param   idCpu               The Virtual CPU ID of the calling EMT.
    21142114 * @param   u64ExpireGipTime    The time for the sleep to expire expressed as GIP time.
     
    22402240 * The caller must check that the host can do high resolution timers.
    22412241 *
    2242  * @param   pVM         The VM handle.
     2242 * @param   pVM         Pointer to the VM.
    22432243 * @param   idHostCpu   The current host CPU id.
    22442244 * @param   uHz         The desired frequency.
     
    24372437 *
    24382438 * @returns see GVMMR0QueryStatistics.
    2439  * @param   pVM             Pointer to the shared VM structure. Optional.
    2440  * @param   pReq            The request packet.
     2439 * @param   pVM             Pointer to the VM. Optional.
     2440 * @param   pReq            Pointer to the request packet.
    24412441 */
    24422442GVMMR0DECL(int) GVMMR0QueryStatisticsReq(PVM pVM, PGVMMQUERYSTATISTICSSREQ pReq)
     
    25522552 *
    25532553 * @returns see GVMMR0ResetStatistics.
    2554  * @param   pVM             Pointer to the shared VM structure. Optional.
    2555  * @param   pReq            The request packet.
     2554 * @param   pVM             Pointer to the VM. Optional.
     2555 * @param   pReq            Pointer to the request packet.
    25562556 */
    25572557GVMMR0DECL(int) GVMMR0ResetStatisticsReq(PVM pVM, PGVMMRESETSTATISTICSSREQ pReq)
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette