From 55df7a560f499b13fbd920e4e9b98f97db124e67 Mon Sep 17 00:00:00 2001 From: Johannes Anderwald Date: Wed, 3 Oct 2007 17:53:03 +0000 Subject: [PATCH] - deactivate signal handler for linux svn path=/trunk/; revision=29382 --- reactos/tools/sysreg/rosboot_test.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/reactos/tools/sysreg/rosboot_test.cpp b/reactos/tools/sysreg/rosboot_test.cpp index f33b2c5a692..6e5a330f800 100644 --- a/reactos/tools/sysreg/rosboot_test.cpp +++ b/reactos/tools/sysreg/rosboot_test.cpp @@ -751,10 +751,11 @@ namespace Sysreg_ fclose(file); #endif OsSupport::cancelAlarms(); - OsSupport::setAlarm (m_MaxTime, m_Pid); #ifdef __LINUX__ - OsSupport::setAlarm(m_MaxTime, getpid()); + //OsSupport::setAlarm (m_MaxTime, m_Pid); + //OsSupport::setAlarm(m_MaxTime, getpid()); #else + OsSupport::setAlarm (m_MaxTime, m_Pid); OsSupport::setAlarm(m_MaxTime, GetCurrentProcessId()); #endif