// // Copyright 2018 Staysail Systems, Inc. // Copyright 2018 Capitar IT Group BV // // This software is supplied under the terms of the MIT License, a // copy of which should be located in the distribution where this // file was obtained (LICENSE.txt). A copy of the license may also be // found online at https://opensource.org/licenses/MIT. // #ifndef CORE_TASKQ_H #define CORE_TASKQ_H #include "core/defs.h" #include "core/list.h" typedef struct nni_taskq nni_taskq; typedef struct nni_task nni_task; extern int nni_taskq_init(nni_taskq **, int); extern void nni_taskq_fini(nni_taskq *); // nni_task_dispatch sends the task to the queue. It is guaranteed to // succeed. (If the queue is shutdown, then the behavior is undefined.) extern void nni_task_dispatch(nni_task *); extern void nni_task_exec(nni_task *); extern void nni_task_prep(nni_task *); extern void nni_task_unprep(nni_task *); // nni_task_cancel cancels the task. It will wait for the task to complete // if it is already running. extern int nni_task_cancel(nni_task *); extern void nni_task_wait(nni_task *); extern int nni_task_init(nni_task **, nni_taskq *, nni_cb, void *); extern void nni_task_fini(nni_task *); extern int nni_taskq_sys_init(void); extern void nni_taskq_sys_fini(void); #endif // CORE_TASKQ_H