Changeset 34326 in vbox for trunk/src/VBox/VMM/TM.cpp
- Timestamp:
- Nov 24, 2010 2:03:55 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/TM.cpp
r34241 r34326 727 727 728 728 /** 729 * Initializes the per-VCPU TM.730 *731 * @returns VBox status code.732 * @param pVM The VM to operate on.733 */734 VMM_INT_DECL(int) TMR3InitCPU(PVM pVM)735 {736 LogFlow(("TMR3InitCPU\n"));737 return VINF_SUCCESS;738 }739 740 741 /**742 729 * Checks if the host CPU has a fixed TSC frequency. 743 730 * … … 1020 1007 } 1021 1008 1022 return VINF_SUCCESS;1023 }1024 1025 1026 /**1027 * Terminates the per-VCPU TM.1028 *1029 * Termination means cleaning up and freeing all resources,1030 * the VM it self is at this point powered off or suspended.1031 *1032 * @returns VBox status code.1033 * @param pVM The VM to operate on.1034 */1035 VMM_INT_DECL(int) TMR3TermCPU(PVM pVM)1036 {1037 1009 return VINF_SUCCESS; 1038 1010 }
Note:
See TracChangeset
for help on using the changeset viewer.