lib/thread: Update spdk_thread_send_msg description

Documentation mentions that the message may be processed asynchronously.
However, it's always handled that way - updated description to match the
behavior.

Signed-off-by: Kozlowski Mateusz <mateusz.kozlowski@intel.com>
Change-Id: Ia284f18fa7ebbc0d4c1b9352572ffdc0260a4e84
Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/478592
Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
Reviewed-by: Jim Harris <james.r.harris@intel.com>
Reviewed-by: Tomasz Zawadzki <tomasz.zawadzki@intel.com>
Reviewed-by: Shuhei Matsumoto <shuhei.matsumoto.xt@hitachi.com>
Community-CI: SPDK CI Jenkins <sys_sgci@intel.com>
This commit is contained in:
Kozlowski Mateusz 2019-12-20 04:03:05 -05:00 committed by Tomasz Zawadzki
parent cb7da325bb
commit 28d901c8d7

View File

@ -367,7 +367,7 @@ int spdk_thread_get_stats(struct spdk_thread_stats *stats);
/**
* Send a message to the given thread.
*
* The message may be sent asynchronously - i.e. spdk_thread_send_msg may return
* The message will be sent asynchronously - i.e. spdk_thread_send_msg will always return
* prior to `fn` being called.
*
* \param thread The target thread.