Changeset 15277 in vbox for trunk/src/VBox/HostServices/GuestProperties
- Timestamp:
- Dec 10, 2008 7:13:49 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 40695
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/GuestProperties/service.cpp
r15179 r15277 1067 1067 rc = RTStrDupEx(&pszFlags, szFlags); 1068 1068 if (RT_SUCCESS(rc)) 1069 { 1070 LogFlowThisFunc (("pszName=%p (%s)\n", pszName, pszName)); 1071 LogFlowThisFunc (("pszValue=%p (%s)\n", pszValue, pszValue)); 1072 LogFlowThisFunc (("pszFlags=%p (%s)\n", pszFlags, pszFlags)); 1069 1073 rc = RTReqCallEx(mReqQueue, NULL, 0, RTREQFLAGS_NO_WAIT, 1070 1074 (PFNRT)Service::reqNotify, 7, mpfnHostCallback, … … 1072 1076 (uint32_t) RT_HIDWORD(u64Timestamp), 1073 1077 (uint32_t) RT_LODWORD(u64Timestamp), pszFlags); 1078 } 1074 1079 } 1075 1080 … … 1083 1088 rc = RTStrDupEx(&pszName, pszProperty); 1084 1089 if (RT_SUCCESS(rc)) 1090 { 1091 LogFlowThisFunc (("pszName=%p (%s)\n", pszName, pszName)); 1085 1092 rc = RTReqCallEx(mReqQueue, NULL, 0, RTREQFLAGS_NO_WAIT, 1086 1093 (PFNRT)Service::reqNotify, 7, mpfnHostCallback, 1087 mpvHostData, pszName, NULL,1094 mpvHostData, pszName, (uintptr_t) NULL, 1088 1095 (uint32_t) RT_HIDWORD(u64Timestamp), 1089 (uint32_t) RT_LODWORD(u64Timestamp), NULL); 1096 (uint32_t) RT_LODWORD(u64Timestamp), 1097 (uintptr_t) NULL); 1098 } 1090 1099 } 1091 1100 if (RT_FAILURE(rc)) /* clean up if we failed somewhere */ … … 1097 1106 } 1098 1107 LogFlowThisFunc (("returning\n")); 1099 LogFlowThisFunc (("pszName=%p (%s)\n", pszName, pszName));1100 LogFlowThisFunc (("pszValue=%p (%s)\n", pszValue, pszValue));1101 LogFlowThisFunc (("pszFlags=%p (%s)\n", pszFlags, pszFlags));1102 1108 #endif /* VBOX_GUEST_PROP_TEST_NOTHREAD not defined */ 1103 1109 }
Note:
See TracChangeset
for help on using the changeset viewer.