From 28d901c8d70ac4b9f81807693c5698d0c3db2a8f Mon Sep 17 00:00:00 2001 From: Kozlowski Mateusz Date: Fri, 20 Dec 2019 04:03:05 -0500 Subject: [PATCH] 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 Change-Id: Ia284f18fa7ebbc0d4c1b9352572ffdc0260a4e84 Reviewed-on: https://review.gerrithub.io/c/spdk/spdk/+/478592 Tested-by: SPDK CI Jenkins Reviewed-by: Jim Harris Reviewed-by: Tomasz Zawadzki Reviewed-by: Shuhei Matsumoto Community-CI: SPDK CI Jenkins --- include/spdk/thread.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/spdk/thread.h b/include/spdk/thread.h index 505016d9c..881a6c18f 100644 --- a/include/spdk/thread.h +++ b/include/spdk/thread.h @@ -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.