Przeglądaj źródła

issue #113 resolved for linux

Leon Urbas 10 lat temu
rodzic
commit
a1061c4884
1 zmienionych plików z 5 dodań i 2 usunięć
  1. 5 2
      examples/networklayer.c

+ 5 - 2
examples/networklayer.c

@@ -116,17 +116,19 @@ UA_Int32 NL_msgLoop(NL_data* nl, struct timeval *tv, UA_Int32(*worker)(void*), v
 			UA_Int32 err = errno;
 
 			switch (err) {
+			// handle known errors
 			case EBADF:
 			case EINTR:
 			case EINVAL:
-				//FIXME: handle errors
+				// FIXME: handle errors
 				DBG_ERR(printf("UA_Stack_msgLoop - errno={%d,%s}\n", errno, strerror(errno)));
 				break;
+			// we've got a timeout
 			case EAGAIN:
 			default:
 				DBG_VERBOSE(printf("UA_Stack_msgLoop - errno={%d,%s}\n", errno, strerror(errno)));
 				DBG_VERBOSE(printf("UA_Stack_msgLoop - call worker\n"));
-
+				worker(arg);
 				DBG_VERBOSE(printf("UA_Stack_msgLoop - return from worker\n"));
 			}
 		}
@@ -136,6 +138,7 @@ UA_Int32 NL_msgLoop(NL_data* nl, struct timeval *tv, UA_Int32(*worker)(void*), v
 			DBG_VERBOSE(printf("UA_Stack_msgLoop - activities on %d handles\n",result));
 			UA_list_iteratePayload(&(nl->connections),NL_checkFdSet);
 		}
+		// FIXME: Seems to be a conceptional flaw to call the worker here...
 		worker(arg);
 	}