Changeset 58123 in vbox for trunk/src/VBox/VMM/VMMRZ/VMMRZ.cpp
- Timestamp:
- Oct 8, 2015 6:09:45 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMRZ/VMMRZ.cpp
r58122 r58123 40 40 * 41 41 * @param pVM The cross context VM structure. 42 * @param pVCpu Pointer to the VMCPUof the calling EMT.42 * @param pVCpu The cross context virtual CPU structure of the calling EMT. 43 43 * @param enmOperation The operation. 44 44 * @param uArg The argument to the operation. … … 123 123 * Disables all host calls, except certain fatal ones. 124 124 * 125 * @param pVCpu The CPU struct forthe calling EMT.125 * @param pVCpu The cross context virtual CPU structure of the calling EMT. 126 126 * @thread EMT. 127 127 */ … … 157 157 * Counters VMMRZCallRing3Disable() and re-enables host calls. 158 158 * 159 * @param pVCpu The CPU struct forthe calling EMT.159 * @param pVCpu The cross context virtual CPU structure of the calling EMT. 160 160 * @thread EMT. 161 161 */ … … 190 190 * 191 191 * @returns true if it's safe, false if it isn't. 192 * @param pVCpu The CPU struct forthe calling EMT.192 * @param pVCpu The cross context virtual CPU structure of the calling EMT. 193 193 */ 194 194 VMMRZDECL(bool) VMMRZCallRing3IsEnabled(PVMCPU pVCpu) … … 203 203 * Sets the ring-0 callback before doing the ring-3 call. 204 204 * 205 * @param pVCpu Pointer to the VMCPU.205 * @param pVCpu The cross context virtual CPU structure. 206 206 * @param pfnCallback Pointer to the callback. 207 207 * @param pvUser The user argument. … … 226 226 * Removes the ring-0 callback. 227 227 * 228 * @param pVCpu Pointer to the VMCPU.228 * @param pVCpu The cross context virtual CPU structure. 229 229 */ 230 230 VMMRZDECL(void) VMMRZCallRing3RemoveNotification(PVMCPU pVCpu) … … 237 237 * Checks whether there is a ring-0 callback notification active. 238 238 * 239 * @param pVCpu Pointer to the VMCPU.239 * @param pVCpu The cross context virtual CPU structure. 240 240 * @returns true if there the notification is active, false otherwise. 241 241 */
Note:
See TracChangeset
for help on using the changeset viewer.