Changeset 630 in vbox
- Timestamp:
- Feb 5, 2007 12:22:09 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 18259
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/MachineImpl.cpp
r606 r630 2390 2390 */ 2391 2391 2392 RTPROCESS pid = NIL_RTPROCESS; 2393 aControl->GetPID ( (ULONG *)&pid);2392 RTPROCESS pid = NIL_RTPROCESS; AssertCompile (sizeof (ULONG) == sizeof (RTPROCESS)); 2393 aControl->GetPID (&pid); 2394 2394 2395 2395 LogFlowThisFunc (("mSession.mPid=%d(0x%x)\n", -
trunk/src/VBox/Main/SessionImpl.cpp
r606 r630 250 250 251 251 *aPid = (ULONG) RTProcSelf(); 252 AssertCompile (sizeof (*aPid) == sizeof (RTPROCESS)); 252 253 253 254 return S_OK;
Note:
See TracChangeset
for help on using the changeset viewer.