source: asp3_tinet_ecnl_rx/trunk/btstack/src/memory_pool.c@ 337

Last change on this file since 337 was 337, checked in by coas-nagasima, 6 years ago

ASP3版ECNLを追加

  • Property svn:eol-style set to native
  • Property svn:mime-type set to text/x-csrc;charset=UTF-8
File size: 2.9 KB
Line 
1/*
2 * Copyright (C) 2009-2012 by Matthias Ringwald
3 *
4 * Redistribution and use in source and binary forms, with or without
5 * modification, are permitted provided that the following conditions
6 * are met:
7 *
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
13 * 3. Neither the name of the copyright holders nor the names of
14 * contributors may be used to endorse or promote products derived
15 * from this software without specific prior written permission.
16 * 4. Any redistribution, use, or modification is done solely for
17 * personal benefit and not for any commercial purpose or for
18 * monetary gain.
19 *
20 * THIS SOFTWARE IS PROVIDED BY MATTHIAS RINGWALD AND CONTRIBUTORS
21 * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL MATTHIAS
24 * RINGWALD OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
25 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
26 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS
27 * OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED
28 * AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
29 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF
30 * THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31 * SUCH DAMAGE.
32 *
33 * Please inquire about commercial licensing options at btstack@ringwald.ch
34 *
35 */
36
37/*
38 * memory_pool.c
39 *
40 * Fixed-size block allocation
41 *
42 * Free blocks are kept in singly linked list
43 *
44 */
45
46#include <btstack/memory_pool.h>
47#include <stddef.h>
48
49typedef struct node {
50 struct node * next;
51} node_t;
52
53void memory_pool_create(memory_pool_t *pool, void * storage, int count, int block_size){
54 node_t *free_blocks = (node_t*) pool;
55 char *mem_ptr = (char *) storage;
56 int i;
57
58 // create singly linked list of all available blocks
59 free_blocks->next = NULL;
60 for (i = 0 ; i < count ; i++){
61 memory_pool_free(pool, mem_ptr);
62 mem_ptr += block_size;
63 }
64}
65
66void * memory_pool_get(memory_pool_t *pool){
67 node_t *free_blocks = (node_t*) pool;
68 node_t *node;
69
70 if (!free_blocks->next) return NULL;
71
72 // remove first
73 node = free_blocks->next;
74 free_blocks->next = node->next;
75
76 return (void*) node;
77}
78
79void memory_pool_free(memory_pool_t *pool, void * block){
80 node_t *free_blocks = (node_t*) pool;
81 node_t *node = (node_t*) block;
82 // add block as node to list
83 node->next = free_blocks->next;
84 free_blocks->next = node;
85}
Note: See TracBrowser for help on using the repository browser.