[Date Prev][Date Next][Thread Prev][Thread Next]
[Date Index]
[Thread Index]
- Subject: Re: Lua on Atmel's AVR Microcontrollers
- From: Luiz Henrique de Figueiredo <lhf@...>
- Date: Fri, 4 Jun 2004 07:34:38 -0300
>If there are somehow central points, where Lua accesses
>large memory areas, one could implement this.
I'm not sure what you mean, but Lua 5.1 does not rely on malloc. Instead, the
host is required to provide a memory allocator when creating a Lua state. So,
you can implement whatever allocation policy when need or want. But Lua will
still ask for memory as it needs, that is, not in blocks.
--lhf