2024-09-09 08:57:42 +00:00
|
|
|
/* Copyright (c) 2015, The Linux Foundation. All rights reserved.
|
2024-09-09 08:52:07 +00:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 and
|
|
|
|
* only version 2 as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*/
|
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
#ifndef _NET_CNSS_PREALLOC_H_
|
|
|
|
#define _NET_CNSS_PREALLOC_H_
|
2024-09-09 08:52:07 +00:00
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
#define WCNSS_PRE_ALLOC_GET_THRESHOLD (4*1024)
|
|
|
|
|
|
|
|
extern void *wcnss_prealloc_get(unsigned int size);
|
|
|
|
extern int wcnss_prealloc_put(void *ptr);
|
|
|
|
extern int wcnss_pre_alloc_reset(void);
|
|
|
|
void wcnss_prealloc_check_memory_leak(void);
|
2024-09-09 08:52:07 +00:00
|
|
|
|
2024-09-09 08:57:42 +00:00
|
|
|
#endif /* _NET_CNSS__PREALLOC_H_ */
|