X-Git-Url: http://git.droids-corp.org/?a=blobdiff_plain;f=doc%2Fguides%2Fprog_guide%2Fevent_timer_adapter.rst;h=eb195ebd4c63f63720bac4290ca633979b4bd76a;hb=e95291f01966cbb2b7cd0985cc0edd40eda75a1d;hp=7bbbdfe9058ba5a5aa279ef6d86b31879e55fa0f;hpb=30e7fbd62839f858b27ef60358dffb6e0a7d24d4;p=dpdk.git diff --git a/doc/guides/prog_guide/event_timer_adapter.rst b/doc/guides/prog_guide/event_timer_adapter.rst index 7bbbdfe905..eb195ebd4c 100644 --- a/doc/guides/prog_guide/event_timer_adapter.rst +++ b/doc/guides/prog_guide/event_timer_adapter.rst @@ -5,7 +5,7 @@ Event Timer Adapter Library =========================== The DPDK -`Event Device library `_ +`Event Device library `_ introduces an event driven programming model which presents applications with an alternative to the polling model traditionally used in DPDK applications. Event devices can be coupled with arbitrary components to provide @@ -21,7 +21,7 @@ The Event Timer Adapter library is designed to interface with hardware or software implementations of the timer mechanism; it will query an eventdev PMD to determine which implementation should be used. The default software implementation manages timers using the DPDK -`Timer library `_. +`Timer library `_. Examples of using the API are presented in the `API Overview`_ and `Processing Timer Expiry Events`_ sections. Code samples are abstracted and @@ -179,6 +179,11 @@ running the event timer adapter. This function calls the start entry points defined by eventdev PMDs for hardware implementations or puts a service component into the running state in the software implementation. +.. Note:: + + The eventdev to which the event_timer_adapter is connected needs to + be started before calling rte_event_timer_adapter_start(). + Arming Event Timers ~~~~~~~~~~~~~~~~~~~