Changeset 24574 in vbox
- Timestamp:
- Nov 11, 2009 9:44:52 AM (15 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/Makefile.kmk
r24571 r24574 257 257 258 258 VBoxSVC_LIBS += \ 259 $( LIB_VMM) \259 $(PATH_LIB)/SSMStandalone$(VBOX_SUFF_LIB) \ 260 260 $(LIB_DDU) 261 VBoxSVC_LIBS.linux = \262 $(LIB_REM)263 VBoxSVC_LIBS.darwin = \264 $(LIB_REM)265 261 VBoxSVC_LIBS.solaris = \ 266 262 adm \ -
trunk/src/VBox/VMM/Makefile.kmk
r24061 r24574 230 230 #endif 231 231 232 233 234 # 235 # SSMStandalone.lib/a for linking with VBoxSVC and other executables. 236 # 237 LIBRARIES += SSMStandalone 238 SSMStandalone_TEMPLATE = VBOXR3EXE 239 SSMStandalone_DEFS = IN_VMM_R3 SSM_STANDALONE 240 SSMStandalone_SOURCES = SSM.cpp 241 242 232 243 if1of ($(VBOX_LDR_FMT32), pe lx) 233 244 -
trunk/src/VBox/VMM/SSM.cpp
r24566 r24574 864 864 * Internal Functions * 865 865 *******************************************************************************/ 866 #ifndef SSM_STANDALONE 866 867 static int ssmR3LazyInit(PVM pVM); 867 868 static DECLCALLBACK(int) ssmR3SelfLiveExec(PVM pVM, PSSMHANDLE pSSM, uint32_t uPass); … … 869 870 static DECLCALLBACK(int) ssmR3SelfLoadExec(PVM pVM, PSSMHANDLE pSSM, uint32_t uVersion, uint32_t uPass); 870 871 static int ssmR3Register(PVM pVM, const char *pszName, uint32_t uInstance, uint32_t uVersion, size_t cbGuess, const char *pszBefore, PSSMUNIT *ppUnit); 872 #endif 871 873 872 874 static int ssmR3StrmWriteBuffers(PSSMSTRM pStrm); … … 877 879 878 880 881 #ifndef SSM_STANDALONE 879 882 880 883 /** … … 1568 1571 return ssmR3DeregisterByNameAndType(pVM, pszName, SSMUNITTYPE_EXTERNAL); 1569 1572 } 1573 1574 #endif /* !SSM_STANDALONE */ 1570 1575 1571 1576 … … 2899 2904 } 2900 2905 2906 #ifndef SSM_STANDALONE 2901 2907 2902 2908 /** … … 5158 5164 } 5159 5165 5166 #endif /* !SSM_STANDALONE */ 5160 5167 5161 5168 … … 6841 6848 } 6842 6849 6850 #ifndef SSM_STANDALONE 6843 6851 6844 6852 /** … … 6941 6949 } 6942 6950 6951 #endif /* !SSM_STANDALONE */ 6943 6952 6944 6953 /** … … 7481 7490 } 7482 7491 7492 #ifndef SSM_STANDALONE 7483 7493 7484 7494 /** … … 7707 7717 } 7708 7718 7719 #endif /* !SSM_STANDALONE */ 7720 7709 7721 7710 7722 /** … … 7742 7754 } 7743 7755 7756 #ifndef SSM_STANDALONE 7744 7757 7745 7758 /** … … 8178 8191 } 8179 8192 8193 #endif /* !SSM_STANDALONE */ 8194 8180 8195 8181 8196 /** … … 8634 8649 8635 8650 8651 #ifndef SSM_STANDALONE 8636 8652 /** 8637 8653 * Asynchronously cancels the current SSM operation ASAP. … … 8678 8694 return rc; 8679 8695 } 8680 8696 #endif /* !SSM_STANDALONE */ 8697
Note:
See TracChangeset
for help on using the changeset viewer.