AndroLua icon indicating copy to clipboard operation
AndroLua copied to clipboard

A few changes

Open TimMensch opened this issue 11 years ago • 4 comments

I needed the ability to use the # operator on arrays passed down from Java. It's a pretty simple change, and I've tested it and it works.

I also needed LuaObject.finalize() to not block on synchronized(L).

As a bonus, I hate seeing warnings, so I found the GCC pragma that asks it to ignore the warnings in question, as well as cleaning up the warnings in LuaObject.

I also have extensions allowing LuaJava to access LuaJIT's FFI. Let me know if you're interested in adding that; FFI is awesome, and works on Android to pull in and link with .so files (as well as standard C library functions, of course -- I got rid of several calls into Java entirely by using FFI calls into C libraries, which is just all kinds of faster).

--Tim

TimMensch avatar Feb 08 '13 19:02 TimMensch

Finalization of Lua objects is something that's been hitting me on long network requests, I'll be testing this out myself as well - thanks!

vadi2 avatar Mar 19 '13 04:03 vadi2

what's the status on this being accepted?

CameraCornet avatar Nov 29 '14 22:11 CameraCornet

Soon, I promise you.

On Sun, Nov 30, 2014 at 12:14 AM, CameraCornet [email protected] wrote:

what's the status on this being accepted?

— Reply to this email directly or view it on GitHub https://github.com/stevedonovan/AndroLua/pull/2#issuecomment-64967318.

stevedonovan avatar Nov 30 '14 09:11 stevedonovan

I'm not using AndroLua any more, so it's no skin off of my nose, but I was amused when I looked at my open pull requests to see the "Soon, I promise you." above.

Oops. ¯\(ツ)

TimMensch avatar Sep 20 '18 21:09 TimMensch