Changeset 31723 in vbox
- Timestamp:
- Aug 17, 2010 12:02:03 PM (14 years ago)
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/ftm.h
r31721 r31723 1 1 /** @file 2 * FTM - Fault Tolerance M onitor. (VMM)2 * FTM - Fault Tolerance Manager 3 3 */ 4 4 … … 41 41 * @{ 42 42 */ 43 VMMR3DECL(int) FTMR3PowerOn(PVM pVM, bool fSource, unsigned uInterval, c har *pszAddress, unsigned uPort);43 VMMR3DECL(int) FTMR3PowerOn(PVM pVM, bool fSource, unsigned uInterval, const char *pszAddress, unsigned uPort); 44 44 45 45 #endif /* IN_RING3 */ 46 47 /** @} */ 46 48 47 49 /** @} */ -
trunk/src/VBox/VMM/FTM.cpp
r31722 r31723 1 1 /* $Id$ */ 2 2 /** @file 3 * GMM - Global Memory Manager, ring-3 request wrappers.3 * FTM - Fault Tolerance Manager 4 4 */ 5 5 … … 21 21 *******************************************************************************/ 22 22 #define LOG_GROUP LOG_GROUP_FTM 23 #include <VBox/gmm.h>24 23 #include <VBox/vmm.h> 25 24 #include <VBox/vm.h> 26 #include <VBox/sup.h>27 25 #include <VBox/err.h> 28 26 #include <VBox/param.h> 27 #include <VBox/ftm.h> 29 28 30 29 #include <iprt/assert.h> 31 30 #include <VBox/log.h> 32 #include <iprt/mem.h>33 #include <iprt/string.h>34 31 35 32 36 VMMR3DECL(int) FTMR3PowerOn(PVM pVM, bool fSource, unsigned uInterval, char *pszAddress, unsigned uPort) 33 34 VMMR3DECL(int) FTMR3PowerOn(PVM pVM, bool fSource, unsigned uInterval, const char *pszAddress, unsigned uPort) 37 35 { 38 36 return VERR_NOT_IMPLEMENTED;
Note:
See TracChangeset
for help on using the changeset viewer.