mirror of
https://github.com/oliverschmidt/contiki.git
synced 2024-12-22 10:30:13 +00:00
Respect MMEM_CONF_SIZE user option, otherwise default to 4096 byts
for MMEM_SIZE.
This commit is contained in:
parent
c4df71bb7e
commit
94eecb64f1
@ -28,7 +28,7 @@
|
||||
*
|
||||
* This file is part of the Contiki operating system.
|
||||
*
|
||||
* @(#)$Id: mmem.c,v 1.1 2006/06/17 22:41:18 adamdunkels Exp $
|
||||
* @(#)$Id: mmem.c,v 1.2 2006/12/22 17:14:06 barner Exp $
|
||||
*/
|
||||
|
||||
/**
|
||||
@ -47,10 +47,14 @@
|
||||
|
||||
#include "mmem.h"
|
||||
#include "list.h"
|
||||
|
||||
#include "contiki-conf.h"
|
||||
#include <string.h>
|
||||
|
||||
#ifdef MMEM_CONF_SIZE
|
||||
#define MMEM_SIZE MMEM_CONF_SIZE
|
||||
#else
|
||||
#define MMEM_SIZE 4096
|
||||
#endif
|
||||
|
||||
LIST(mmemlist);
|
||||
unsigned int avail_memory;
|
||||
|
Loading…
Reference in New Issue
Block a user