1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/sys/memarray/memarray.c

34 lines
1015 B
C
Raw Normal View History

/*
* Copyright (C) 2018 Tobias Heider <heidert@nm.ifi.lmu.de>
*
* This file is subject to the terms and conditions of the GNU Lesser
* General Public License v2.1. See the file LICENSE in the top level
* directory for more details.
*/
2020-10-21 15:58:33 +02:00
#include <assert.h>
#include <string.h>
#include "memarray.h"
2020-10-22 11:35:22 +02:00
#define ENABLE_DEBUG 0
#include "debug.h"
void memarray_init(memarray_t *mem, void *data, size_t size, size_t num)
{
assert((mem != NULL) && (data != NULL) && (size >= sizeof(void *)) &&
(num != 0));
DEBUG("memarray: Initialize memarray of %u times %u Bytes at %p\n",
(unsigned)num, (unsigned)size, data);
mem->free_data = data;
mem->size = size;
mem->num = num;
for (size_t i = 0; i < (mem->num - 1); i++) {
void *next = ((char *)mem->free_data) + ((i + 1) * mem->size);
memcpy(((char *)mem->free_data) + (i * mem->size), &next, sizeof(void *));
}
memset(((char *)mem->free_data) + ((mem->num - 1) * (mem->size)), 0, sizeof(void *));
}