summaryrefslogtreecommitdiff
path: root/apps/plugins/lua/rockmalloc.c
diff options
context:
space:
mode:
authorMaurus Cuelenaere <mcuelenaere@gmail.com>2009-05-21 19:01:41 +0000
committerMaurus Cuelenaere <mcuelenaere@gmail.com>2009-05-21 19:01:41 +0000
commitcf87597226f5d6b269f1f2c4d6f402aa1eccb852 (patch)
tree4ba1f3ae53b3bd9cae0e2c6c4dd57836b43a5ece /apps/plugins/lua/rockmalloc.c
parentc483efadc63eaed35b5fb5e4e02c2282daf32470 (diff)
downloadrockbox-cf87597226f5d6b269f1f2c4d6f402aa1eccb852.zip
rockbox-cf87597226f5d6b269f1f2c4d6f402aa1eccb852.tar.gz
rockbox-cf87597226f5d6b269f1f2c4d6f402aa1eccb852.tar.bz2
rockbox-cf87597226f5d6b269f1f2c4d6f402aa1eccb852.tar.xz
Commit FS#9174: Lua scripting language by Dan Everton
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@21020 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/lua/rockmalloc.c')
-rw-r--r--apps/plugins/lua/rockmalloc.c63
1 files changed, 63 insertions, 0 deletions
diff --git a/apps/plugins/lua/rockmalloc.c b/apps/plugins/lua/rockmalloc.c
new file mode 100644
index 0000000..14a4339
--- /dev/null
+++ b/apps/plugins/lua/rockmalloc.c
@@ -0,0 +1,63 @@
+/***************************************************************************
+ * __________ __ ___.
+ * Open \______ \ ____ ____ | | _\_ |__ _______ ___
+ * Source | _// _ \_/ ___\| |/ /| __ \ / _ \ \/ /
+ * Jukebox | | ( <_> ) \___| < | \_\ ( <_> > < <
+ * Firmware |____|_ /\____/ \___ >__|_ \|___ /\____/__/\_ \
+ * \/ \/ \/ \/ \/
+ * $Id$
+ *
+ * Copyright (C) 2008 Dan Everton (safetydan)
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
+ * KIND, either express or implied.
+ *
+ ****************************************************************************/
+
+#include "plugin.h"
+#include "rockmalloc.h"
+#include "malloc.c"
+
+void *rocklua_morecore(int size)
+{
+ static char *sbrk_top = NULL;
+ static ssize_t total_size = 0;
+ void *ptr = 0;
+
+ if (size > 0) {
+ size = size + 4 - (size % 4);
+
+ if (sbrk_top == NULL) {
+ sbrk_top = rb->plugin_get_buffer((size_t *) &total_size);
+ }
+
+ if (sbrk_top == NULL || size + 4 > abs(total_size)) {
+ /* Try the audio buffer */
+ sbrk_top = rb->plugin_get_audio_buffer((size_t *) &total_size);
+
+ if(sbrk_top == NULL || size + 4 > abs(total_size)) {
+ printf("malloc failed for %d!\n", size);
+ return (void *) MFAIL;
+ }
+ }
+
+ ptr = sbrk_top + 4;
+ *((unsigned int *) sbrk_top) = size;
+
+ sbrk_top += size + 4;
+ total_size -= size + 4;
+
+ return ptr;
+ } else if (size < 0) {
+ /* we don't currently support shrink behavior */
+ return (void *) MFAIL;
+ } else {
+ return sbrk_top;
+ }
+}
+