On Feb 4, 2:53 am, Billy Maron <[email protected]> wrote: > I added printfs in mspace.c but those don't come out. LOGW isn't defined in > that file. I made some permission changes to /dev/ashmem and now it gets > further. I now see err from pmem and hgl. Not fatal so ignored. Then error > from zygote signal 11. Don't know why. Any ideas?
That's a segmentation fault, so it's crashing somewhere. You need to get a native stack trace somehow, perhaps by capturing a core dump or running it under gdbserver. stdout/stderr are redirected to /dev/null at some point in the proceedings, but the underlying log calls are part of libc and hence usable from anywhere. You can also fopen() something temporarily and dump status info into it (turning buffering off might be prudent). --~--~---------~--~----~------------~-------~--~----~ unsubscribe: [email protected] website: http://groups.google.com/group/android-porting -~----------~----~----~----~------~----~------~--~---
