Changeset 8961 in vbox for trunk/src/VBox/VMM
- Timestamp:
- May 20, 2008 2:51:33 PM (17 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/VMMR0.cpp
r8953 r8961 1088 1088 1089 1089 /** 1090 * Override this so we can push 1090 * Override this so we can push it up to ring-3. 1091 1091 * 1092 1092 * @param pszExpr Expression. Can be NULL. … … 1094 1094 * @param pszFile Location file name. 1095 1095 * @param pszFunction Location function name. 1096 * @remark This API exists in HC Ring-3 and GC.1097 1096 */ 1098 1097 DECLEXPORT(void) RTCALL AssertMsg1(const char *pszExpr, unsigned uLine, const char *pszFile, const char *pszFunction) … … 1112 1111 1113 1112 /** 1114 * Callback for RTLogFormatV which writes to the comport.1113 * Callback for RTLogFormatV which writes to the ring-3 log port. 1115 1114 * See PFNLOGOUTPUT() for details. 1116 1115 */ … … 1119 1118 for (size_t i = 0; i < cbChars; i++) 1120 1119 { 1121 LogAlways(("%c", pachChars[i])); /** @todo this isn't any release logging in ring-0 from what I can tell... */1122 1120 #ifndef DEBUG_sandervl 1123 1121 SUPR0Printf("%c", pachChars[i]); 1124 1122 #endif 1123 LogAlways(("%c", pachChars[i])); 1125 1124 } 1126 1125 … … 1131 1130 DECLEXPORT(void) RTCALL AssertMsg2(const char *pszFormat, ...) 1132 1131 { 1133 PRTLOGGER pLog = RTLogDefaultInstance(); 1132 PRTLOGGER pLog = RTLogDefaultInstance(); /** @todo we want this for release as well! */ 1134 1133 if (pLog) 1135 1134 {
Note:
See TracChangeset
for help on using the changeset viewer.