Memory Pool
Create a pool of memory blocks
|
#include <stdio.h>
#include <stdlib.h>
#include <stdbool.h>
#include <stdint.h>
#include <memory.h>
#include <time.h>
#include "memory_pool.h"
Go to the source code of this file.
Macros | |
#define | NODE_MAGIC 0xBAADA555 |
Functions | |
void | main () |
#define NODE_MAGIC 0xBAADA555 |
author: armaan roshani
Testbench for memory_pool.c
Definition at line 19 of file test-memory-pool.c.
void main | ( | ) |
Definition at line 25 of file test-memory-pool.c.