
Change license to BSD-3-Clause Signed-off-by: Rafal Stefanowski <rafal.stefanowski@intel.com>
24 lines
527 B
C
24 lines
527 B
C
/*
|
|
* Copyright(c) 2012-2021 Intel Corporation
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
|
|
#ifndef __THREADS_H__
|
|
#define __THREADS_H__
|
|
|
|
#include "ocf/ocf.h"
|
|
#include "linux_kernel_version.h"
|
|
|
|
#define CAS_CPUS_ALL -1
|
|
|
|
int cas_create_queue_thread(ocf_queue_t q, int cpu);
|
|
void cas_kick_queue_thread(ocf_queue_t q);
|
|
void cas_stop_queue_thread(ocf_queue_t q);
|
|
|
|
int cas_create_cleaner_thread(ocf_cleaner_t c);
|
|
void cas_kick_cleaner_thread(ocf_cleaner_t c);
|
|
void cas_stop_cleaner_thread(ocf_cleaner_t c);
|
|
|
|
#endif /* __THREADS_H__ */
|