X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=doc%2Fguides%2Fsample_app_ug%2Ftimer.rst;h=98d762d2388c551512bed7281a016a48b0ededf2;hb=483a914d24a01683c8c450a6314109b7f6d35568;hp=87dfb4c1f41333c0aacc73baf942eeae524b33a8;hpb=218c4e68c1d9bd4a9281bc1dc4d0ab89859083bf;p=dpdk.git diff --git a/doc/guides/sample_app_ug/timer.rst b/doc/guides/sample_app_ug/timer.rst index 87dfb4c1f4..98d762d238 100644 --- a/doc/guides/sample_app_ug/timer.rst +++ b/doc/guides/sample_app_ug/timer.rst @@ -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;