[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[GNUnet-SVN] r12008 - gnunet/contrib
From: |
gnunet |
Subject: |
[GNUnet-SVN] r12008 - gnunet/contrib |
Date: |
Mon, 28 Jun 2010 12:53:00 +0200 |
Author: wachs
Date: 2010-06-28 12:53:00 +0200 (Mon, 28 Jun 2010)
New Revision: 12008
Modified:
gnunet/contrib/timeout_watchdog.c
Log:
Modified: gnunet/contrib/timeout_watchdog.c
===================================================================
--- gnunet/contrib/timeout_watchdog.c 2010-06-28 10:52:25 UTC (rev 12007)
+++ gnunet/contrib/timeout_watchdog.c 2010-06-28 10:53:00 UTC (rev 12008)
@@ -54,7 +54,6 @@
void sigint_handler(int val)
{
- printf("Killing test process\n");
kill(0, val);
exit(1);
}
@@ -92,16 +91,13 @@
child = fork();
if (child==0)
{
- printf("Starting test process `%s'\n",argv[2],arguments);
setpgid(0,gpid);
execvp(argv[2],&argv[2]);
- printf("Test process `%s' could not be started\n",argv[2]);
exit(1);
}
if (child > 0)
{
sleep(timeout);
- printf("Timeout, killing all test processes\n");
kill(0,SIGABRT);
exit(1);
}
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [GNUnet-SVN] r12008 - gnunet/contrib,
gnunet <=