Wireshark  2.9.0-477-g68ec514b
The Wireshark network protocol analyzer
wmem_allocator_block_fast.h
1 /* wmem_allocator_block_fast.h
2  * Definitions for the Wireshark Memory Manager Fast Large-Block Allocator
3  *
4  * Wireshark - Network traffic analyzer
5  * By Gerald Combs <gerald@wireshark.org>
6  * Copyright 1998 Gerald Combs
7  *
8  * SPDX-License-Identifier: GPL-2.0-or-later
9  */
10 
11 #ifndef __WMEM_ALLOCATOR_BLOCK_FAST_H__
12 #define __WMEM_ALLOCATOR_BLOCK_FAST_H__
13 
14 #include "wmem_core.h"
15 
16 #ifdef __cplusplus
17 extern "C" {
18 #endif /* __cplusplus */
19 
20 void
21 wmem_block_fast_allocator_init(wmem_allocator_t *allocator);
22 
23 #ifdef __cplusplus
24 }
25 #endif /* __cplusplus */
26 
27 #endif /* __WMEM_ALLOCATOR_BLOCK_FAST_H__ */
28 
29 /*
30  * Editor modelines - http://www.wireshark.org/tools/modelines.html
31  *
32  * Local variables:
33  * c-basic-offset: 4
34  * tab-width: 8
35  * indent-tabs-mode: nil
36  * End:
37  *
38  * vi: set shiftwidth=4 tabstop=8 expandtab:
39  * :indentSize=4:tabSize=8:noTabs=true:
40  */
Definition: wmem_allocator.h:26