]> git.droids-corp.org - dpdk.git/blobdiff - lib/librte_eal/include/rte_common.h
eal: introduce thread uninit helper
[dpdk.git] / lib / librte_eal / include / rte_common.h
index 668e8b0af87d4c2473f0945243ac13fc91b6ca1e..0843ce69e7ec198e32ab15848f2717ea4c48d2f0 100644 (file)
@@ -409,7 +409,7 @@ __extension__ typedef uint64_t RTE_MARKER64[0];
  *    The combined value.
  */
 static inline uint32_t
-rte_combine32ms1b(register uint32_t x)
+rte_combine32ms1b(uint32_t x)
 {
        x |= x >> 1;
        x |= x >> 2;
@@ -431,7 +431,7 @@ rte_combine32ms1b(register uint32_t x)
  *    The combined value.
  */
 static inline uint64_t
-rte_combine64ms1b(register uint64_t v)
+rte_combine64ms1b(uint64_t v)
 {
        v |= v >> 1;
        v |= v >> 2;