Changeset 30514 in vbox for trunk/src/libs/xpcom18a4/ipc/ipcd
- Timestamp:
- Jun 29, 2010 5:16:07 PM (15 years ago)
- Location:
- trunk/src/libs/xpcom18a4/ipc/ipcd
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/libs/xpcom18a4/ipc/ipcd/client/src/ipcdclient.cpp
r30077 r30514 1347 1347 nsMemory::Free(targetStr); 1348 1348 1349 IPC_LogBinary((const PRUint8 *) msg->Data(), msg->DataLen());1349 // IPC_LogBinary((const PRUint8 *) msg->Data(), msg->DataLen()); 1350 1350 } 1351 1351 #endif -
trunk/src/libs/xpcom18a4/ipc/ipcd/extensions/dconnect/src/ipcDConnectService.cpp
r28995 r30514 2261 2261 NS_LOG_RELEASE(this, count, "DConnectStub"); 2262 2262 2263 2264 #ifdef IPC_LOGGING 2265 const char *name; 2266 mIInfo->GetNameShared(&name); 2267 LOG(("{%p} DConnectStub::Release(): peer=%d instance=0x%Lx {%s}, new count=%d\n", 2268 this, mPeerID, mInstance, name, count)); 2269 #endif 2270 2263 2271 // mRefCntLevels may already be empty here (due to the "stabilize" trick below) 2264 2272 if (mRefCntLevels.GetSize() > 0) … … 2498 2506 PRUint8 i, paramCount = aInfo->GetParamCount(); 2499 2507 2500 LOG((" instance=0x%Lx\n", mInstance)); 2508 #ifdef IPC_LOGGING 2509 const char *name; 2510 nsCOMPtr<nsIInterfaceInfo> iinfo; 2511 GetInterfaceInfo(getter_AddRefs(iinfo)); 2512 iinfo->GetNameShared(&name); 2513 LOG((" instance=0x%Lx {%s}\n", mInstance, name)); 2501 2514 LOG((" name=%s\n", aInfo->GetName())); 2502 2515 LOG((" param-count=%u\n", (PRUint32) paramCount)); 2516 #endif 2517 2503 2518 2504 2519 ipcMessageWriter writer(16 * paramCount);
Note:
See TracChangeset
for help on using the changeset viewer.