Changeset 22725 in vbox for trunk/src/VBox/Main
- Timestamp:
- Sep 2, 2009 3:52:24 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 51851
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/webservice/vboxweb.cpp
r22722 r22725 462 462 WebLog("Request served\n"); 463 463 464 #if 0 /* Ulrich, try enable this and see if the leak goes away. */465 {466 int vrc = com::EventQueue::processThreadEventQueue(0);467 WebLog("processThreadEventQueue -> %Rrc\n", vrc);468 }469 #endif470 471 464 soap_destroy(&soap); // clean up class instances 472 465 soap_end(&soap); // clean up everything and close socket 466 467 // every COM thread needs to process its event queue, or memory leaks 468 int vrc = com::EventQueue::processThreadEventQueue(0); 473 469 } 474 470 } … … 933 929 WSDLT_ID id = pRef->toWSDL(); 934 930 WEBDEBUG((" %s: found existing ref %s for COM obj 0x%lX\n", __FUNCTION__, id.c_str(), ulp)); 935 LogDJ((" %s: found existing ref %s for COM obj 0x%lX\n", __FUNCTION__, id.c_str(), ulp));936 931 } 937 932 else … … 1063 1058 1064 1059 WEBDEBUG((" * %s: MOR created for ulp 0x%lX (%s), new ID is %llX; now %lld objects total\n", __FUNCTION__, _ulp, pcszInterface, _id, cTotal)); 1065 LogDJ((" * %s: MOR created for ulp 0x%lX (%s), new ID is %llX; now %lld objects total\n", __FUNCTION__, _ulp, pcszInterface, _id, cTotal));1066 1060 } 1067 1061
Note:
See TracChangeset
for help on using the changeset viewer.