]> git.droids-corp.org - dpdk.git/blobdiff - examples/performance-thread/pthread_shim/main.c
examples/performance-thread: fix build on FreeBSD
[dpdk.git] / examples / performance-thread / pthread_shim / main.c
index f03572181ca7e28d93b42b0e94af9c8a552291dd..850b009d3e395ec5bfe12a8e2fa4ed1caca28aeb 100644 (file)
 #define DEBUG_APP 0
 #define HELLOW_WORLD_MAX_LTHREADS 10
 
 #define DEBUG_APP 0
 #define HELLOW_WORLD_MAX_LTHREADS 10
 
+#ifndef __GLIBC__ /* sched_getcpu() is glibc-specific */
+#define sched_getcpu() rte_lcore_id()
+#endif
+
 __thread int print_count;
 __thread pthread_mutex_t print_lock;
 
 __thread int print_count;
 __thread pthread_mutex_t print_lock;
 
@@ -175,12 +179,12 @@ static void initial_lthread(void *args __attribute__((unused)))
                 * use an attribute to pass the desired lcore
                 */
                pthread_attr_t attr;
                 * use an attribute to pass the desired lcore
                 */
                pthread_attr_t attr;
-               cpu_set_t cpuset;
+               rte_cpuset_t cpuset;
 
                CPU_ZERO(&cpuset);
                CPU_SET(lcore, &cpuset);
                pthread_attr_init(&attr);
 
                CPU_ZERO(&cpuset);
                CPU_SET(lcore, &cpuset);
                pthread_attr_init(&attr);
-               pthread_attr_setaffinity_np(&attr, sizeof(cpu_set_t), &cpuset);
+               pthread_attr_setaffinity_np(&attr, sizeof(rte_cpuset_t), &cpuset);
 
                /* create the thread */
                pthread_create(&tid[i], &attr, helloworld_pthread, (void *) i);
 
                /* create the thread */
                pthread_create(&tid[i], &attr, helloworld_pthread, (void *) i);