Author: janderwald
Date: Wed Oct 3 21:53:03 2007
New Revision: 29382
URL:
http://svn.reactos.org/svn/reactos?rev=29382&view=rev
Log:
- deactivate signal handler for linux
Modified:
trunk/reactos/tools/sysreg/rosboot_test.cpp
Modified: trunk/reactos/tools/sysreg/rosboot_test.cpp
URL:
http://svn.reactos.org/svn/reactos/trunk/reactos/tools/sysreg/rosboot_test.…
==============================================================================
--- trunk/reactos/tools/sysreg/rosboot_test.cpp (original)
+++ trunk/reactos/tools/sysreg/rosboot_test.cpp Wed Oct 3 21:53:03 2007
@@ -751,10 +751,11 @@
fclose(file);
#endif
OsSupport::cancelAlarms();
+#ifdef __LINUX__
+ //OsSupport::setAlarm (m_MaxTime, m_Pid);
+ //OsSupport::setAlarm(m_MaxTime, getpid());
+#else
OsSupport::setAlarm (m_MaxTime, m_Pid);
-#ifdef __LINUX__
- OsSupport::setAlarm(m_MaxTime, getpid());
-#else
OsSupport::setAlarm(m_MaxTime, GetCurrentProcessId());
#endif