]> git.droids-corp.org - dpdk.git/blobdiff - doc/guides/sample_app_ug/timer.rst
replace unused attributes
[dpdk.git] / doc / guides / sample_app_ug / timer.rst
index 87dfb4c1f41333c0aacc73baf942eeae524b33a8..98d762d2388c551512bed7281a016a48b0ededf2 100644 (file)
@@ -137,7 +137,7 @@ In this case, the timer is stopped using the rte_timer_stop() function.
     /* timer0 callback */
 
     static void
-    timer0_cb( attribute ((unused)) struct rte_timer *tim, __attribute ((unused)) void *arg)
+    timer0_cb(__rte_unused struct rte_timer *tim, __rte_unused void *arg)
     {
         static unsigned counter = 0;
 
@@ -159,7 +159,7 @@ rte_timer_reset() function:
     /* timer1 callback */
 
     static void
-    timer1_cb( attribute ((unused)) struct rte_timer *tim, _attribute ((unused)) void *arg)
+    timer1_cb(__rte_unused struct rte_timer *tim, __rte_unused void *arg)
     {
         unsigned lcore_id = rte_lcore_id();
         uint64_t hz;