- Timestamp:
- Aug 24, 2007 12:43:13 PM (17 years ago)
- Location:
- trunk/src/VBox/Main
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ConsoleImpl.cpp
r4327 r4344 812 812 } 813 813 814 #define CRASHTEST64(a) do { LogRel(a); RTLogFlush(RTLogRelDefaultInstance()); } while (0)815 816 814 #ifdef VRDP_NO_COM 817 815 void Console::VRDPInterceptClipboard (uint32_t u32ClientId) … … 825 823 LogFlowFuncEnter(); 826 824 827 CRASHTEST64(("enter %p\n", u32ClientId));828 829 825 #ifdef VRDP_NO_COM 830 826 Console *console = this; … … 832 828 Console *console = static_cast <Console *> (pvUser); 833 829 #endif /* VRDP_NO_COM */ 834 CRASHTEST64(("console %p\n", console));835 830 AssertReturnVoid (console); 836 831 … … 838 833 AssertComRCReturnVoid (autoCaller.rc()); 839 834 840 CRASHTEST64(("console->mConsoleVRDPServer %p\n", console->mConsoleVRDPServer));841 835 AssertReturnVoid (console->mConsoleVRDPServer); 842 836 843 837 #ifdef VBOX_VRDP 844 838 #ifdef VRDP_NO_COM 845 CRASHTEST64(("going to call the instance client id %d\n", u32ClientId));846 839 mConsoleVRDPServer->ClipboardCreate (u32ClientId); 847 840 #else … … 850 843 #endif /* VBOX_VRDP */ 851 844 852 CRASHTEST64(("leave\n"));853 845 LogFlowFuncLeave(); 854 846 return; … … 3884 3876 * (When called from uninit mConsoleVRDPServer is already destroyed.) 3885 3877 */ 3886 CRASHTEST64(("mConsoleVRDPServer = %p\n", mConsoleVRDPServer));3887 3878 if (mConsoleVRDPServer) 3888 3879 { … … 3894 3885 mConsoleVRDPServer->Stop(); 3895 3886 3896 CRASHTEST64(("server stopped\n"));3897 3887 alock.enter(); 3898 3888 } -
trunk/src/VBox/Main/ConsoleVRDPServer.cpp
r4341 r4344 986 986 { 987 987 LogFlowMember(("ConsoleVRDPServer::Launch\n")); 988 LogRel(("VRDP: starting the server\n")); RTLogFlush(RTLogRelDefaultInstance());989 988 #ifdef VBOX_VRDP 990 989 int rc = VINF_SUCCESS; … … 1068 1067 Assert(VALID_PTR(this)); /** @todo r=bird: there are(/was) some odd cases where this buster was invalid on 1069 1068 * linux. Just remove this when it's 100% sure that problem has been fixed. */ 1070 LogRel(("VRDP: stop the server mhServer %p\n", mhServer)); RTLogFlush(RTLogRelDefaultInstance());1071 1069 #ifdef VBOX_VRDP 1072 1070 if (mhServer)
Note:
See TracChangeset
for help on using the changeset viewer.