12 lines
371 B
C
12 lines
371 B
C
|
/* long_wq.h - Workqueue API intended for long-running operations. */
|
||
|
|
||
|
/*
|
||
|
* Copyright (c) 2022 Nordic Semiconductor ASA
|
||
|
*
|
||
|
* SPDX-License-Identifier: Apache-2.0
|
||
|
*/
|
||
|
|
||
|
int bt_long_wq_schedule(struct k_work_delayable *dwork, k_timeout_t timeout);
|
||
|
int bt_long_wq_reschedule(struct k_work_delayable *dwork, k_timeout_t timeout);
|
||
|
int bt_long_wq_submit(struct k_work *dwork);
|