aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/libraries/Runnr.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/libraries/Runnr.c')
-rw-r--r--src/libraries/Runnr.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/src/libraries/Runnr.c b/src/libraries/Runnr.c
index 1f10d33..5fecfdf 100644
--- a/src/libraries/Runnr.c
+++ b/src/libraries/Runnr.c
@@ -421,9 +421,6 @@ static void _compileEnd(void *data, Ecore_Thread *thread)
421 free(compiler->SID); 421 free(compiler->SID);
422} 422}
423 423
424// TODO - Should pass error messages back through a linked list.
425// To eventually get passed back to the calling app via compiler->errors and compiler->warnings.
426// Will need ageneric "add this formatted string to a linked list" function, in SledjHamr.c
427static void _compileThread(void *data, Ecore_Thread *thread) 424static void _compileThread(void *data, Ecore_Thread *thread)
428{ 425{
429 LuaCompiler *compiler = data; 426 LuaCompiler *compiler = data;
@@ -487,6 +484,7 @@ static void _compileThread(void *data, Ecore_Thread *thread)
487 } 484 }
488} 485}
489 486
487// TODO - Threaded version is consistantly about half the speed. WTF?
490void compileScript(LuaCompiler *compiler, int threadIt) 488void compileScript(LuaCompiler *compiler, int threadIt)
491{ 489{
492 if (threadIt) 490 if (threadIt)