ethdev: add represented port action to flow API
[dpdk.git] / app / test / process.h
index 27f1b1c..5b10cf6 100644 (file)
@@ -48,6 +48,7 @@ process_dup(const char *const argv[], int numargs, const char *env_value)
 #ifdef RTE_LIB_PDUMP
 #ifdef RTE_NET_RING
        pthread_t thread;
+       int rc;
 #endif
 #endif
 
@@ -89,6 +90,11 @@ process_dup(const char *const argv[], int numargs, const char *env_value)
                        }
 
                        while ((dirent = readdir(dir)) != NULL) {
+
+                               if (strcmp(dirent->d_name, ".") == 0 ||
+                                       strcmp(dirent->d_name, "..") == 0)
+                                       continue;
+
                                errno = 0;
                                fd = strtol(dirent->d_name, &endptr, 10);
                                if (errno != 0 || endptr[0] != '\0') {
@@ -109,6 +115,7 @@ process_dup(const char *const argv[], int numargs, const char *env_value)
                for (i = 0; i < num; i++)
                        printf("'%s' ", argv_cpy[i]);
                printf("\n");
+               fflush(stdout);
 
                /* set the environment variable */
                if (setenv(RECURSIVE_ENV_VAR, env_value, 1) != 0)
@@ -126,8 +133,13 @@ process_dup(const char *const argv[], int numargs, const char *env_value)
        /* parent process does a wait */
 #ifdef RTE_LIB_PDUMP
 #ifdef RTE_NET_RING
-       if ((strcmp(env_value, "run_pdump_server_tests") == 0))
-               pthread_create(&thread, NULL, &send_pkts, NULL);
+       if ((strcmp(env_value, "run_pdump_server_tests") == 0)) {
+               rc = pthread_create(&thread, NULL, &send_pkts, NULL);
+               if (rc != 0) {
+                       rte_panic("Cannot start send pkts thread: %s\n",
+                                 strerror(rc));
+               }
+       }
 #endif
 #endif