Ticket #917: mouse.1.diff
File mouse.1.diff, 2.8 KB (added by , 16 years ago) |
---|
-
src/kits/storage/AddOnMonitor.cpp
22 22 return; 23 23 } 24 24 fPulseMessage = new BMessage(B_PULSE); 25 fPulseRunner = new BMessageRunner(messenger, fPulseMessage, 1000000); 25 //fPulseRunner = new BMessageRunner(messenger, fPulseMessage, 1000000); 26 fPulseRunner = new BMessageRunner(messenger, fPulseMessage, 100000); 26 27 status = fPulseRunner->InitCheck(); 27 28 if (status != B_OK) { 28 29 fInitCheck = status; -
src/add-ons/input_server/devices/mouse/MouseInputDevice.cpp
223 223 else { 224 224 fActive = true; 225 225 status = resume_thread(fThread); 226 //QQQ from this point on, the cursor responds to mouse movements 227 debug_printf("QQQ: the mouse is usable\n"); 226 228 } 227 229 228 230 if (status < B_OK) { -
src/add-ons/kernel/bus_managers/ps2/ps2_service.c
104 104 packet_buffer_read(sServiceCmdBuffer, (uint8 *)&cmd, sizeof(cmd)); 105 105 switch (cmd.id) { 106 106 case PS2_SERVICE_NOTIFY_DEVICE_ADDED: 107 snooze(1000000); // for better testing of possible input server race condition107 //snooze(1000000); // for better testing of possible input server race condition 108 108 TRACE("ps2: PS2_SERVICE_NOTIFY_DEVICE_ADDED %s\n", cmd.dev->name); 109 109 ps2_dev_publish(cmd.dev); 110 110 break; … … 113 113 TRACE("ps2: PS2_SERVICE_NOTIFY_DEVICE_REPUBLISH %s\n", cmd.dev->name); 114 114 ps2_dev_unpublish(cmd.dev); 115 115 snooze(2500000); 116 // remove? 116 117 ps2_dev_publish(cmd.dev); 117 118 break; 118 119 -
src/servers/app/AppServer.cpp
69 69 gFontManager->Run(); 70 70 71 71 gScreenManager = new ScreenManager(); 72 //QQQ at this point, the boot screen has been replaced with a blank screen 73 ktrace_printf("QQQ: blank screen\n"); 72 74 gScreenManager->Run(); 73 75 74 76 // Create the bitmap allocator. Object declared in BitmapManager.cpp … … 120 122 desktop = new Desktop(userID); 121 123 122 124 status_t status = desktop->Init(); 125 //QQQ at this point, the blue desktop is drawn (note that because of hardware latencies, it is not immiedately visible) 126 ktrace_printf("QQQ: init desktop\n"); 123 127 if (status == B_OK) { 124 128 if (!desktop->Run()) 125 129 status = B_ERROR;