From: <pa...@us...> - 2003-10-04 12:05:06
|
Update of /cvsroot/fuse-emulator/fuse In directory sc8-pr-cvs1:/tmp/cvs-serv27816 Modified Files: timer.c Log Message: Remove duplicated Win32 code (Marek). Index: timer.c =================================================================== RCS file: /cvsroot/fuse-emulator/fuse/timer.c,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** timer.c 12 Aug 2003 14:30:05 -0000 1.18 --- timer.c 4 Oct 2003 12:05:00 -0000 1.19 *************** *** 185,210 **** } - - return 0; - } - - void - timer_sleep( void ) - { - #ifndef DEBUG_MODE - while( timer_count <= 0.0 ) Sleep(0); - #endif /* #ifndef DEBUG_MODE */ - } - - int - timer_end( void ) - { - #ifndef DEBUG_MODE - timeKillEvent(wTimerID); /* cancel the event */ - wTimerID = 0; - #endif /* #ifndef DEBUG_MODE */ - return 0; - } - void CALLBACK timer_signal( UINT wTimerID, UINT msg, DWORD dwUser, DWORD dw1, DWORD dw2 ) --- 185,188 ---- |