thread: remove spdk_{start|stop}_poller typedefs

These are not used anywhere.

Change-Id: I04dba71d35b6684af13a8ff00f104665f2905cff
Signed-off-by: Artur Paszkiewicz <artur.paszkiewicz@intel.com>
Reviewed-on: https://review.spdk.io/gerrit/c/spdk/spdk/+/17286
Reviewed-by: Konrad Sztyber <konrad.sztyber@intel.com>
Tested-by: SPDK CI Jenkins <sys_sgci@intel.com>
Reviewed-by: Jim Harris <james.r.harris@intel.com>
Community-CI: Mellanox Build Bot
This commit is contained in:
Artur Paszkiewicz 2023-03-21 15:40:42 +01:00 committed by Konrad Sztyber
parent 2e1c5a722d
commit d69516f5e7

View File

@ -107,29 +107,6 @@ typedef void (*spdk_thread_pass_msg)(spdk_msg_fn fn, void *ctx,
*/ */
typedef int (*spdk_poller_fn)(void *ctx); typedef int (*spdk_poller_fn)(void *ctx);
/**
* Function to be called to start a poller for the thread.
*
* \param thread_ctx Context for the thread.
* \param fn Callback function for a poller.
* \param arg Argument passed to callback.
* \param period_microseconds Polling period in microseconds.
*
* \return a pointer to the poller on success, or NULL on failure.
*/
typedef struct spdk_poller *(*spdk_start_poller)(void *thread_ctx,
spdk_poller_fn fn,
void *arg,
uint64_t period_microseconds);
/**
* Function to be called to stop a poller.
*
* \param poller Poller to stop.
* \param thread_ctx Context for the thread.
*/
typedef void (*spdk_stop_poller)(struct spdk_poller *poller, void *thread_ctx);
/** /**
* Callback function to set poller into interrupt mode or back to poll mode. * Callback function to set poller into interrupt mode or back to poll mode.
* *