[pisa-src] r1526 - trunk/community-operator/co_client.c

  • From: Jan Marten <jan.marten@xxxxxxxxxxxxxx>
  • To: pisa-src@xxxxxxxxxxxxx
  • Date: Wed, 04 Nov 2009 20:23:32 +0100

Author: marten
Date: Wed Nov  4 20:23:32 2009
New Revision: 1526

Log:
Added infinite loop, thus, the client is not shutted down after one iteration.

Modified:
   trunk/community-operator/co_client.c

Modified: trunk/community-operator/co_client.c
==============================================================================
--- trunk/community-operator/co_client.c        Wed Nov  4 20:20:39 2009        
(r1525)
+++ trunk/community-operator/co_client.c        Wed Nov  4 20:23:32 2009        
(r1526)
@@ -228,7 +228,8 @@
  */
 static void co_client_main(void)
 {
-       select(0,NULL,NULL,NULL,NULL);
+       while(1)
+               select(0,NULL,NULL,NULL,NULL);
 }
 
 /**

Other related posts:

  • » [pisa-src] r1526 - trunk/community-operator/co_client.c - Jan Marten