change debug

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@8812 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Jérôme Duval 2004-09-03 12:14:27 +00:00
parent f8db8b97a8
commit 5c506d7fdd
1 changed files with 4 additions and 5 deletions

View File

@ -29,9 +29,9 @@
#include <stdlib.h>
#include <unistd.h>
//#define DEBUG 1
#define DEBUG 1
#if DEBUG
#define LOG(text) fputs(text, sLogFile)
#define LOG(text) fputs(text, sLogFile); fflush(sLogFile)
#else
#define LOG(text)
#endif
@ -76,8 +76,7 @@ instantiate_input_device()
MouseInputDevice::MouseInputDevice()
: fThread(-1),
sQuit(false)
: fThread(-1)
{
// TODO: Open "/dev/input/mouse/serial/0" as well, and what about USB mouses ?
fFd = open("dev/input/mouse/ps2/0", O_RDWR);
@ -87,7 +86,7 @@ MouseInputDevice::MouseInputDevice()
#if DEBUG
if (sLogFile == NULL)
sLogFile = fopen("/var/log/mouse_device_log.log", "w");
sLogFile = fopen("/var/log/mouse_device_log.log", "a");
#endif
}