lua: Switch memory allocator from dl to tlsf

Instead of providing yet another memory allocator implementation
use tlsf and simply link tlsf library.

Another small improvement is to *grow* memory pool by grabbing
audiobuffer instead of just switching to use audiobuf exclusively.
Tested with simple lua 'memory eater' script.

This patch extends tlsf lib slightly. You can provide
void *get_new_area(size_t * size) function which will override
weak dummy implementation provided in lib itself. This allows to
automaticaly initialize memory pool as well as grow memory
pool if needed (for example grab audiobuffer when pluginbuffer
is exhaused).

Change-Id: I841af6b6b5bbbf546c14cbf139a7723fbb982f1b
This commit is contained in:
Marcin Bukat 2013-08-22 12:12:47 +02:00
parent b2e80edd16
commit a2a2e14e0d
10 changed files with 50 additions and 5173 deletions

View file

@ -9,13 +9,3 @@ version 0.31 which is licensed under the GPL version 2:
strtol.c
strtoul.c
strstr.c
The malloc routine is Doug Lea's malloc with the following license:
Version 2.8.3 Thu Sep 22 11:16:15 2005 Doug Lea (dl at gee)
This is a version (aka dlmalloc) of malloc/free/realloc written by
Doug Lea and released to the public domain, as explained at
http://creativecommons.org/licenses/publicdomain. Send questions,
comments, complaints, performance data, etc to dl@cs.oswego.edu