eal/linux: fix build with hpet
[dpdk.git] / lib / librte_eal / linuxapp / eal / eal_timer.c
index e0642de..f2abb7b 100644 (file)
@@ -47,6 +47,7 @@
 #include <rte_common.h>
 #include <rte_log.h>
 #include <rte_cycles.h>
+#include <rte_lcore.h>
 #include <rte_memory.h>
 #include <rte_memzone.h>
 #include <rte_eal.h>
@@ -219,7 +220,7 @@ rte_eal_hpet_init(int make_default)
         * Set thread_name for aid in debugging.
         */
        snprintf(thread_name, RTE_MAX_THREAD_NAME_LEN, "hpet-msb-inc");
-       ret = pthread_setname_np(msb_inc_thread_id, thread_name);
+       ret = rte_thread_setname(msb_inc_thread_id, thread_name);
        if (ret != 0)
                RTE_LOG(ERR, EAL,
                        "ERROR: Cannot set HPET timer thread name!\n");
@@ -271,7 +272,7 @@ get_tsc_freq(void)
 #ifdef CLOCK_MONOTONIC_RAW
 #define NS_PER_SEC 1E9
 
-       struct timespec sleeptime = {.tv_nsec = 5E8 }; /* 1/2 second */
+       struct timespec sleeptime = {.tv_nsec = NS_PER_SEC / 10 }; /* 1/10 second */
 
        struct timespec t_start, t_end;
        uint64_t tsc_hz;