ISSUE RESOLVED:
For anyone finding this, we managed to resolve our issue, after several days spent trying to find the cause we instead found a solution that with housekeeping is only 4 lines.
We added this to an OnGUI call in the offending scene.
** **Color c = GUI.color; GUI.Color = Color.white; GUI.Label(new Rect(0,0,25,25), "."); GUI.color = c;** **
Issue solved. Just adding a GUI drawing of any kind resolves the issue, which leads me to believe that somewhere between Vuforia, Scaleform, Unity, and our code, some sort of rendering flag or state wasnt being cleaned up properly, and isn’t handled at some stage. Drawing like this with GUI must set that back to an acceptable state. Granted its not perfect to make it look like the users device has a dead pixel, but for us we can position it to hide behind scaleform assets. In other situations you could just carefully select the colour to match the background at that time. So its not a huge issue.
This solution has also solved another rendering issue that we have been experiencing on some Android devices regarding drawing to a render texture that gets used as a mask in a material.
Hey all,
Got a project that has recently had to be downgraded from 4.3 to 4.2 due to the Vuforia plugin not currently supporting 4.3 on android. After the downgrade we had to do a bunch of re-imports and inspector checks to fix broken references etc from the downgrade, but finally got it building again.
Noticed a crash in our AR scene, spent a bit of time looking for the cause but couldn’t pin it down to anything. Oddly enough the project will run perfectly fine through the AR scene when built with the “development build” flag set to true in build settings.
Stumbled on this thread Android Segmentation Fault Issue (Signal 11) - Questions & Answers - Unity Discussions but after removing the only element of the scene that would at the time have potentially been drawing anything in OnGUI it would still crash outside of developer mode.
I realize a Fatal 11 crash can be caused by null reference errors, and am still looking for places that my code my cause this. However the same code runs without any problem on both pc and mac editors, and on a number of iOS devices with various frame rates. The crash also doesnt occur on the scene load, or at a time when objects are instantiated, so it’s not likely to be an issue with Awakes and Starts.
The project is being built from unity 4.2.0f4 (also tested in 4.2.2) currently testing on a Nexus 10. The main plugins the project is using are Vuforia and Scaleform. The log cat from the project 'll attach to this post, and I’ll paste the main crash bit below. Perhaps there is something painfully obvious in it that I’m just missing. (Note: The target speed mod is the last trace generated from our code and is where im currently looking ahead from for potential null references).
EDIT: log file too big to attach, can be found here: Fat-Wednesday
I/Unity ( 1884):
I/Unity ( 1884):
I/Unity ( 1884): (Filename: ./Runtime/ExportGenerated/AndroidManaged/UnityEngineDebug.cpp Line: 54)
I/Unity ( 1884):
I/Unity ( 1884): Jumping for target set.
I/Unity ( 1884):
I/Unity ( 1884): (Filename: ./Runtime/ExportGenerated/AndroidManaged/UnityEngineDebug.cpp Line: 54)
I/Unity ( 1884):
I/Unity ( 1884): TARGET SPEED MOD AT JUMP: 3.5
I/Unity ( 1884):
I/Unity ( 1884): (Filename: ./Runtime/ExportGenerated/AndroidManaged/UnityEngineDebug.cpp Line: 54)
I/Unity ( 1884):
F/libc ( 1884): Fatal signal 11 (SIGSEGV) at 0x00005c4c (code=1), thread 1911 (UnityMain)
I/DEBUG ( 119): *** *** *** *** *** *** *** *** *** *** *** *** *** *** *** ***
I/DEBUG ( 119): Build fingerprint: 'google/mantaray/manta:4.3/JWR66Y/776638:user/release-keys'
I/DEBUG ( 119): Revision: '8'
I/DEBUG ( 119): pid: 1884, tid: 1911, name: UnityMain >>> com.fuzzyfrog.realscaryspiders <<<
I/DEBUG ( 119): signal 11 (SIGSEGV), code 1 (SEGV_MAPERR), fault addr 00005c4c
I/DEBUG ( 119): r0 00005c4c r1 00000bd0 r2 76e207d8 r3 76e207dc
I/DEBUG ( 119): r4 00000000 r5 ffffffff r6 76e210ec r7 00000bd0
I/DEBUG ( 119): r8 00005c4c r9 00005c4c sl 73744e90 fp 00000bd0
I/DEBUG ( 119): ip 00000bc0 sp 76e207d8 lr 74c6c997 pc 74beae70 cpsr 200b0010
I/DEBUG ( 119): d0 3f0000003f800000 d1 bd64155c00000000
I/DEBUG ( 119): d2 be65a0263f737400 d3 3db53f8800000000
I/DEBUG ( 119): d4 ffffffffffffffff d5 ffffffffffffffff
I/DEBUG ( 119): d6 0000000000000000 d7 0000000000000000
I/DEBUG ( 119): d8 3f80000000000000 d9 000000003f800000
I/DEBUG ( 119): d10 3f7fbe773f800000 d11 0000000000000000
I/DEBUG ( 119): d12 0000000000000000 d13 0000000000000000
I/DEBUG ( 119): d14 0000000000000000 d15 0000000000000000
I/DEBUG ( 119): d16 000000003ddee95c d17 0000000000000000
I/DEBUG ( 119): d18 3ddee95c00000000 d19 0000000000000000
I/DEBUG ( 119): d20 0000000000000000 d21 00000000bddee95c
I/DEBUG ( 119): d22 8000000080000000 d23 3f800000bff3df18
I/DEBUG ( 119): d24 bd861452bd75af6f d25 00000000bd80ed24
I/DEBUG ( 119): d26 3da4a33abc3ffeb7 d27 00000000bd9459e2
I/DEBUG ( 119): d28 bd07befe3db8743e d29 00000000bd525421
I/DEBUG ( 119): d30 3e1489bebceb2808 d31 3f800000be4d9650
I/DEBUG ( 119): scr 6000001f
I/DEBUG ( 119):
I/DEBUG ( 119): backtrace:
I/DEBUG ( 119): #00 pc 0019ce70 /system/vendor/lib/egl/libGLES_mali.so
I/DEBUG ( 119): #01 pc 0021e993 /system/vendor/lib/egl/libGLES_mali.so
I/DEBUG ( 119): #02 pc 0021e3d9 /system/vendor/lib/egl/libGLES_mali.so
I/DEBUG ( 119): #03 pc 001f1791 /system/vendor/lib/egl/libGLES_mali.so
I/DEBUG ( 119): #04 pc 001f1ce5 /system/vendor/lib/egl/libGLES_mali.so
I/DEBUG ( 119): #05 pc 001f02db /system/vendor/lib/egl/libGLES_mali.so (glDrawElements+30)
I/DEBUG ( 119): #06 pc 003af8e0 <unknown>
I/DEBUG ( 119): #07 pc 003b18e0 <unknown>
I/DEBUG ( 119): #08 pc 00221cb4 <unknown>
I/DEBUG ( 119): #09 pc 0019a1f8 <unknown>
I/DEBUG ( 119): #10 pc 00213b2c <unknown>
I/DEBUG ( 119): #11 pc 00134700 <unknown>
I/DEBUG ( 119): #12 pc 00136fd0 <unknown>
I/DEBUG ( 119): #13 pc 0013b8d4 <unknown>
I/DEBUG ( 119): #14 pc 00144af0 <unknown>
I/DEBUG ( 119): #15 pc 00164f1c <unknown>
I/DEBUG ( 119): #16 pc 001692b4 <unknown>
I/DEBUG ( 119): #17 pc 002c95dc <unknown>
I/DEBUG ( 119): #18 pc 002c9f98 <unknown>
I/DEBUG ( 119): #19 pc 003f626c <unknown>
I/DEBUG ( 119): #20 pc 003f6310 <unknown>
I/DEBUG ( 119): #21 pc 0001dc0c /system/lib/libdvm.so (dvmPlatformInvoke+112)
I/DEBUG ( 119): #22 pc 0004de6f /system/lib/libdvm.so (dvmCallJNIMethod(unsigned int const*, JValue*, Method const*, Thread*)+398)
I/DEBUG ( 119): #23 pc 00027020 /system/lib/libdvm.so
I/DEBUG ( 119): #24 pc 0002b5d0 /system/lib/libdvm.so (dvmInterpret(Thread*, Method const*, JValue*)+184)
I/DEBUG ( 119): #25 pc 0005fe91 /system/lib/libdvm.so (dvmCallMethodV(Thread*, Method const*, Object*, bool, JValue*, std::__va_list)+292)
I/DEBUG ( 119): #26 pc 0005febb /system/lib/libdvm.so (dvmCallMethod(Thread*, Method const*, Object*, JValue*, ...)+20)
I/DEBUG ( 119): #27 pc 00054c4f /system/lib/libdvm.so
I/DEBUG ( 119): #28 pc 0000ca58 /system/lib/libc.so (__thread_entry+72)
I/DEBUG ( 119): #29 pc 0000cbd4 /system/lib/libc.so (pthread_create+208)
I/DEBUG ( 119):
I/DEBUG ( 119): stack:
I/DEBUG ( 119): 76e20798 75707d20 /system/vendor/lib/egl/libGLES_mali.so
I/DEBUG ( 119): 76e2079c 736d9010
I/DEBUG ( 119): 76e207a0 736d9010
I/DEBUG ( 119): 76e207a4 76e2085c [stack:1911]
I/DEBUG ( 119): 76e207a8 00000000
I/DEBUG ( 119): 76e207ac 84540b88
I/DEBUG ( 119): 76e207b0 83b5093c
I/DEBUG ( 119): 76e207b4 736d9010
I/DEBUG ( 119): 76e207b8 7372f810
I/DEBUG ( 119): 76e207bc 76e2085c [stack:1911]
I/DEBUG ( 119): 76e207c0 83d8dc00
I/DEBUG ( 119): 76e207c4 3f800000
I/DEBUG ( 119): 76e207c8 84540b88
I/DEBUG ( 119): 76e207cc 84540b88
I/DEBUG ( 119): 76e207d0 e3a070ad
I/DEBUG ( 119): 76e207d4 ef9000ad
I/DEBUG ( 119): #00 76e207d8 ffffffff
I/DEBUG ( 119): ........ ........
I/DEBUG ( 119): #01 76e207d8 ffffffff
I/DEBUG ( 119): 76e207dc 00000000
I/DEBUG ( 119): 76e207e0 73730d68
I/DEBUG ( 119): 76e207e4 00000002
I/DEBUG ( 119): 76e207e8 00000000
I/DEBUG ( 119): 76e207ec 736d9010
I/DEBUG ( 119): 76e207f0 76e2085c [stack:1911]
I/DEBUG ( 119): 76e207f4 74c6c3dd /system/vendor/lib/egl/libGLES_mali.so
I/DEBUG ( 119): #02 76e207f8 76e210f0 [stack:1911]
I/DEBUG ( 119): 76e207fc 736d9010
I/DEBUG ( 119): 76e20800 00000000
I/DEBUG ( 119): 76e20804 00000000
I/DEBUG ( 119): 76e20808 00000000
I/DEBUG ( 119): 76e2080c 736d9010
I/DEBUG ( 119): 76e20810 00000bd0
I/DEBUG ( 119): 76e20814 00000002
I/DEBUG ( 119): 76e20818 76e20858 [stack:1911]
I/DEBUG ( 119): 76e2081c 73737810
I/DEBUG ( 119): 76e20820 76e21190 [stack:1911]
I/DEBUG ( 119): 76e20824 00000000
I/DEBUG ( 119): 76e20828 00000bd0
I/DEBUG ( 119): 76e2082c 74c3f795 /system/vendor/lib/egl/libGLES_mali.so
I/DEBUG ( 119):
I/DEBUG ( 119): memory near r0:
I/DEBUG ( 119): 00005c2c ffffffff ffffffff ffffffff ffffffff
I/DEBUG ( 119): 00005c3c ffffffff ffffffff ffffffff ffffffff
I/DEBUG ( 119): 00005c4c ffffffff ffffffff ffffffff ffffffff
I/DEBUG ( 119): 00005c5c ffffffff ffffffff ffffffff ffffffff
I/DEBUG ( 119): 00005c6c ffffffff ffffffff ffffffff ffffffff
I/DEBUG ( 119): 00005c7c ffffffff ffffffff ffffffff ffffffff
I/DEBUG ( 119): 00005c8c ffffffff ffffffff ffffffff ffffffff
I/DEBUG ( 119): 00005c9c ffffffff ffffffff ffffffff ffffffff
I/DEBUG ( 119): 00005cac ffffffff ffffffff ffffffff ffffffff
I/DEBUG ( 119): 00005cbc ffffffff ffffffff ffffffff ffffffff
I/DEBUG ( 119): 00005ccc ffffffff ffffffff ffffffff ffffffff
I/DEBUG ( 119): 00005cdc ffffffff ffffffff ffffffff ffffffff
I/DEBUG ( 119): 00005cec ffffffff ffffffff ffffffff ffffffff
I/DEBUG ( 119): 00005cfc ffffffff ffffffff ffffffff ffffffff
I/DEBUG ( 119): 00005d0c ffffffff ffffffff ffffffff ffffffff
I/DEBUG ( 119): 00005d1c ffffffff ffffffff ffffffff ffffffff
I/DEBUG ( 119):
I/DEBUG ( 119): memory near r2:
I/DEBUG ( 119): 76e207b8 7372f810 76e2085c 83d8dc00 3f800000
I/DEBUG ( 119): 76e207c8 84540b88 84540b88 e3a070ad ef9000ad
I/DEBUG ( 119): 76e207d8 ffffffff 00000000 73730d68 00000002
I/DEBUG ( 119): 76e207e8 00000000 736d9010 76e2085c 74c6c3dd
I/DEBUG ( 119): 76e207f8 76e210f0 736d9010 00000000 00000000
I/DEBUG ( 119): 76e20808 00000000 736d9010 00000bd0 00000002
I/DEBUG ( 119): 76e20818 76e20858 73737810 76e21190 00000000
I/DEBUG ( 119): 76e20828 00000bd0 74c3f795 00000002 76e210ec
I/DEBUG ( 119): 76e20838 76e210f0 00000000 00000001 76e20857
I/DEBUG ( 119): 76e20848 76e20858 736d9010 00002e26 00000002
I/DEBUG ( 119): 76e20858 00000000 00000008 00000001 00000001
I/DEBUG ( 119): 76e20868 00002e26 74c3f795 00000002 76e2112c
I/DEBUG ( 119): 76e20878 76e21130 00000000 00000001 76e20897
I/DEBUG ( 119): 76e20888 76e20898 00000000 00000000 00000000
I/DEBUG ( 119): 76e20898 00000000 00000008 00000002 00000001
I/DEBUG ( 119): 76e208a8 00000000 00000000 00000001 86831080
I/DEBUG ( 119):
I/DEBUG ( 119): memory near r3:
I/DEBUG ( 119): 76e207bc 76e2085c 83d8dc00 3f800000 84540b88
I/DEBUG ( 119): 76e207cc 84540b88 e3a070ad ef9000ad ffffffff
I/DEBUG ( 119): 76e207dc 00000000 73730d68 00000002 00000000
I/DEBUG ( 119): 76e207ec 736d9010 76e2085c 74c6c3dd 76e210f0
I/DEBUG ( 119): 76e207fc 736d9010 00000000 00000000 00000000
I/DEBUG ( 119): 76e2080c 736d9010 00000bd0 00000002 76e20858
I/DEBUG ( 119): 76e2081c 73737810 76e21190 00000000 00000bd0
I/DEBUG ( 119): 76e2082c 74c3f795 00000002 76e210ec 76e210f0
I/DEBUG ( 119): 76e2083c 00000000 00000001 76e20857 76e20858
I/DEBUG ( 119): 76e2084c 736d9010 00002e26 00000002 00000000
I/DEBUG ( 119): 76e2085c 00000008 00000001 00000001 00002e26
I/DEBUG ( 119): 76e2086c 74c3f795 00000002 76e2112c 76e21130
I/DEBUG ( 119): 76e2087c 00000000 00000001 76e20897 76e20898
I/DEBUG ( 119): 76e2088c 00000000 00000000 00000000 00000000
I/DEBUG ( 119): 76e2089c 00000008 00000002 00000001 00000000
I/DEBUG ( 119): 76e208ac 00000000 00000001 86831080 00000000
I/DEBUG ( 119):
I/DEBUG ( 119): memory near r6:
I/DEBUG ( 119): 76e210cc 00000bd0 00000004 76e211a8 76e21190
I/DEBUG ( 119): 76e210dc 000003e8 00000bd0 74c3fce9 00005c4c
I/DEBUG ( 119): 76e210ec 00000000 00000000 00000000 00000001
I/DEBUG ( 119): 76e210fc 00000bd0 00000004 00005c4c 0000006c
I/DEBUG ( 119): 76e2110c 74c3e2df 00005c4c 00000000 76e21160
I/DEBUG ( 119): 76e2111c 3b9aca00 00000bd0 1da76200 133c5ddb
I/DEBUG ( 119): 76e2112c 73f358e4 76e21160 00000000 7ad11540
I/DEBUG ( 119): 76e2113c 8501b474 74497c14 0000000e 086b26c0
I/DEBUG ( 119): 76e2114c 00000000 1da76200 133c5ddb 00000303
I/DEBUG ( 119): 76e2115c 743f9ee8 00001406 00001406 00001406
I/DEBUG ( 119): 76e2116c 00001406 00001406 00001406 00000003
I/DEBUG ( 119): 76e2117c 00000003 00000000 00000002 00000002
I/DEBUG ( 119): 76e2118c 00000004 00000028 00000028 00000028
I/DEBUG ( 119): 76e2119c 00000010 00000010 00000028 529dfe5d
I/DEBUG ( 119): 76e211ac 000227b8 00000000 00023b40 00023b48
I/DEBUG ( 119): 76e211bc 00000018 84b65d80 8447b6c0 74497c14
I/DEBUG ( 119):
I/DEBUG ( 119): memory near r8:
I/DEBUG ( 119): 00005c2c ffffffff ffffffff ffffffff ffffffff
I/DEBUG ( 119): 00005c3c ffffffff ffffffff ffffffff ffffffff
I/DEBUG ( 119): 00005c4c ffffffff ffffffff ffffffff ffffffff
I/DEBUG ( 119): 00005c5c ffffffff ffffffff ffffffff ffffffff
I/DEBUG ( 119): 00005c6c ffffffff ffffffff ffffffff ffffffff
I/DEBUG ( 119): 00005c7c ffffffff ffffffff ffffffff ffffffff
I/DEBUG ( 119): 00005c8c ffffffff ffffffff ffffffff ffffffff
I/DEBUG ( 119): 00005c9c ffffffff ffffffff ffffffff ffffffff
I/DEBUG ( 119): 00005cac ffffffff ffffffff ffffffff ffffffff
I/DEBUG ( 119): 00005cbc ffffffff ffffffff ffffffff ffffffff
I/DEBUG ( 119): 00005ccc ffffffff ffffffff ffffffff ffffffff
I/DEBUG ( 119): 00005cdc ffffffff ffffffff ffffffff ffffffff
I/DEBUG ( 119): 00005cec ffffffff ffffffff ffffffff ffffffff
I/DEBUG ( 119): 00005cfc ffffffff ffffffff ffffffff ffffffff
I/DEBUG ( 119): 00005d0c ffffffff ffffffff ffffffff ffffffff
I/DEBUG ( 119): 00005d1c ffffffff ffffffff ffffffff ffffffff
I/DEBUG ( 119):
I/DEBUG ( 119): memory near r9:
I/DEBUG ( 119): 00005c2c ffffffff ffffffff ffffffff ffffffff
I/DEBUG ( 119): 00005c3c ffffffff ffffffff ffffffff ffffffff
I/DEBUG ( 119): 00005c4c ffffffff ffffffff ffffffff ffffffff
I/DEBUG ( 119): 00005c5c ffffffff ffffffff ffffffff ffffffff
I/DEBUG ( 119): 00005c6c ffffffff ffffffff ffffffff ffffffff
I/DEBUG ( 119): 00005c7c ffffffff ffffffff ffffffff ffffffff
I/DEBUG ( 119): 00005c8c ffffffff ffffffff ffffffff ffffffff
I/DEBUG ( 119): 00005c9c ffffffff ffffffff ffffffff ffffffff
I/DEBUG ( 119): 00005cac ffffffff ffffffff ffffffff ffffffff
I/DEBUG ( 119): 00005cbc ffffffff ffffffff ffffffff ffffffff
I/DEBUG ( 119): 00005ccc ffffffff ffffffff ffffffff ffffffff
I/DEBUG ( 119): 00005cdc ffffffff ffffffff ffffffff ffffffff
I/DEBUG ( 119): 00005cec ffffffff ffffffff ffffffff ffffffff
I/DEBUG ( 119): 00005cfc ffffffff ffffffff ffffffff ffffffff
I/DEBUG ( 119): 00005d0c ffffffff ffffffff ffffffff ffffffff
I/DEBUG ( 119): 00005d1c ffffffff ffffffff ffffffff ffffffff
I/DEBUG ( 119):
I/DEBUG ( 119): memory near sl:
I/DEBUG ( 119): 73744e70 73b07ddc 73b07ddc 76cc7598 00000000
I/DEBUG ( 119): 73744e80 00000018 00000913 73744e80 75d5c900
I/DEBUG ( 119): 73744e90 74c6a4f1 00000002 00000000 00000000
I/DEBUG ( 119): 73744ea0 000007ff 0000000d 0000000f 0000f800
I/DEBUG ( 119): 73744eb0 0000000f 0000ffff 0000f800 0000f802
I/DEBUG ( 119): 73744ec0 00000000 00000000 00001cee 00000000
I/DEBUG ( 119): 73744ed0 00000000 0000009f 00000000 00000001
I/DEBUG ( 119): 73744ee0 00000003 00000018 fffffffd 00000000
I/DEBUG ( 119): 73744ef0 80e32f30 00000000 00000004 0000000c
I/DEBUG ( 119): 73744f00 00000000 00000000 73632bd0 00000000
I/DEBUG ( 119): 73744f10 00000000 00000000 00000000 00000000
I/DEBUG ( 119): 73744f20 00000000 00000000 00000000 00000000
I/DEBUG ( 119): 73744f30 00000000 00000000 00000000 00000000
I/DEBUG ( 119): 73744f40 00000000 00000000 00000000 00000000
I/DEBUG ( 119): 73744f50 00000000 00000000 00000000 00000000
I/DEBUG ( 119): 73744f60 00000000 00000000 00000000 00000000
I/DEBUG ( 119):
I/DEBUG ( 119): memory near sp:
I/DEBUG ( 119): 76e207b8 7372f810 76e2085c 83d8dc00 3f800000
I/DEBUG ( 119): 76e207c8 84540b88 84540b88 e3a070ad ef9000ad
I/DEBUG ( 119): 76e207d8 ffffffff 00000000 73730d68 00000002
I/DEBUG ( 119): 76e207e8 00000000 736d9010 76e2085c 74c6c3dd
I/DEBUG ( 119): 76e207f8 76e210f0 736d9010 00000000 00000000
I/DEBUG ( 119): 76e20808 00000000 736d9010 00000bd0 00000002
I/DEBUG ( 119): 76e20818 76e20858 73737810 76e21190 00000000
I/DEBUG ( 119): 76e20828 00000bd0 74c3f795 00000002 76e210ec
I/DEBUG ( 119): 76e20838 76e210f0 00000000 00000001 76e20857
I/DEBUG ( 119): 76e20848 76e20858 736d9010 00002e26 00000002
I/DEBUG ( 119): 76e20858 00000000 00000008 00000001 00000001
I/DEBUG ( 119): 76e20868 00002e26 74c3f795 00000002 76e2112c
I/DEBUG ( 119): 76e20878 76e21130 00000000 00000001 76e20897
I/DEBUG ( 119): 76e20888 76e20898 00000000 00000000 00000000
I/DEBUG ( 119): 76e20898 00000000 00000008 00000002 00000001
I/DEBUG ( 119): 76e208a8 00000000 00000000 00000001 86831080
I/DEBUG ( 119):
I/DEBUG ( 119): code around pc:
I/DEBUG ( 119): 74beae50 f3166600 1afffff7 ea000011 f3874e5f
I/DEBUG ( 119): 74beae60 f2806e50 e3d1c00f 0a000006 e25cc010
I/DEBUG ( 119): 74beae70 f420004d f3144650 f3144652 f3166640
I/DEBUG ( 119): 74beae80 f3166642 1afffff8 e211c00c 0a000004
I/DEBUG ( 119): 74beae90 e25cc004 f420074d f3144610 f3166600
I/DEBUG ( 119): 74beaea0 1afffffa f3144615 f3165607 f3ba4085
I/DEBUG ( 119): 74beaeb0 f3140615 f3141605 f3b60081 f3104611
I/DEBUG ( 119): 74beaec0 f3105601 e3a0c000 ee141b10 e681101c
I/DEBUG ( 119): 74beaed0 e5821000 f3b45005 ee151b10 e681101c
I/DEBUG ( 119): 74beaee0 e5831000 e12fff1e f3870e5f f2802e50
I/DEBUG ( 119): 74beaef0 f3874e5f e3d1c00f 0a000012 e25cc010
I/DEBUG ( 119): 74beaf00 ecf00b10 f3200670 f3200672 f3200674
I/DEBUG ( 119): 74beaf10 f3200676 f3246870 f34001d6 f3246872
I/DEBUG ( 119): 74beaf20 f34221d6 f3246874 f34441d6 f3246876
I/DEBUG ( 119): 74beaf30 f34661d6 f3222660 f3222662 f3222664
I/DEBUG ( 119): 74beaf40 f3222666 1affffec e211c00c 0a00001d
I/DEBUG ( 119):
I/DEBUG ( 119): code around lr:
I/DEBUG ( 119): 74c6c974 45a44629 e7e9d1f5 0703f031 4600bf02
I/DEBUG ( 119): 74c6c984 462a4639 4639d012 ab01466a f77e1be4
I/DEBUG ( 119): 74c6c994 eb08ea64 9a000047 e0079901 5b02f830
I/DEBUG ( 119): 74c6c9a4 bf2842aa 42a9462a 4629bf38 34fff114
I/DEBUG ( 119): 74c6c9b4 e7cbd2f4 0703f031 4600bf02 462a4639
I/DEBUG ( 119): 74c6c9c4 e03cd008 5b04f850 bf2842aa 42a9462a
I/DEBUG ( 119): 74c6c9d4 4629bf38 34fff114 e7b7d2f4 0703f031
I/DEBUG ( 119): 74c6c9e4 462abf02 46104639 f64fd134 f11475ff
I/DEBUG ( 119): 74c6c9f4 d3ab34ff cb02f838 d0f845ac bf344594
I/DEBUG ( 119): 74c6ca04 46024662 bf88458c f1144661 461034ff
I/DEBUG ( 119): 74c6ca14 e79bd2f0 462b1844 462a4639 d09542a0
I/DEBUG ( 119): 74c6ca24 5b01f810 d0f92dff bf344295 461a462a
I/DEBUG ( 119): 74c6ca34 bf88428d 42a04629 d1f14613 4639e786
I/DEBUG ( 119): 74c6ca44 ab01466a f77e1be4 eb08ea92 9a000087
I/DEBUG ( 119): 74c6ca54 e7bf9901 466a4639 1be4ab01 e9c6f77e
I/DEBUG ( 119): 74c6ca64 eb089800 99010847 e7be4602 466a4639
I/DEBUG ( 119):
I/DEBUG ( 119): memory map around fault addr 00005c4c:
I/DEBUG ( 119): (no map below)
I/DEBUG ( 119): (no map for address)
I/DEBUG ( 119): 40075000-40077000 r-x /system/bin/app_process
D/ExynosCameraHAL2( 123): (m_sensorThreadFunc): scp frame drop1 request_scp(1 to 0)
D/ExynosCameraHAL2( 123): (m_sensorThreadFunc): scp frame drop1 request_scp(1 to 0)
I/BootReceiver( 368): Copying /data/tombstones/tombstone_02 to DropBox (SYSTEM_TOMBSTONE)
W/ActivityManager( 368): Force finishing activity com.fuzzyfrog.realscaryspiders/com.qualcomm.QCARUnityPlayer.QCARPlayerNativeActivity
D/dalvikvm( 368): GC_FOR_ALLOC freed 4623K, 21% free 19240K/24136K, paused 41ms, total 41ms
E/JavaBinder( 368): !!! FAILED BINDER TRANSACTION !!!
E/Camera2-Device( 123): Stream 0 dequeue: Error from native_window: Broken pipe (-32)
I/ActivityManager( 368): Process com.fuzzyfrog.realscaryspiders (pid 1884) has died.
I/WindowState( 368): WIN DEATH: Window{4346b2e0 u0 SurfaceView}
W/InputDispatcher( 368): channel '4365cbd8 com.fuzzyfrog.realscaryspiders/com.qualcomm.QCARUnityPlayer.QCARPlayerNativeActivity (server)' ~ Consumer closed input channel or an error occurred. events=0x9
E/InputDispatcher( 368): channel '4365cbd8 com.fuzzyfrog.realscaryspiders/com.qualcomm.QCARUnityPlayer.QCARPlayerNativeActivity (server)' ~ Channel is unrecoverably broken and will be disposed!
W/InputDispatcher( 368): Attempted to unregister already unregistered input channel '4365cbd8 com.fuzzyfrog.realscaryspiders/com.qualcomm.QCARUnityPlayer.QCARPlayerNativeActivity (server)'
E/Surface ( 123): queueBuffer: error queuing buffer to SurfaceTexture, -32
E/Camera2-Device( 123): enqueue_buffer: Error queueing buffer to native window: Broken pipe (-32)
E/Camera2-Device( 123): Stream 0 dequeue: Error from native_window: Broken pipe (-32)
I/WindowState( 368): WIN DEATH: Window{4365cbd8 u0 com.fuzzyfrog.realscaryspiders/com.qualcomm.QCARUnityPlayer.QCARPlayerNativeActivity}
E/Surface ( 123): queueBuffer: error queuing buffer to SurfaceTexture, -32
E/Camera2-Device( 123): enqueue_buffer: Error queueing buffer to native window: Broken pipe (-32)
E/Camera2-Device( 123): Stream 0 dequeue: Error from native_window: Broken pipe (-32)
D/Zygote ( 121): Process 1884 terminated by signal (11)
D/ExynosCameraHAL2( 123): (m_sensorThreadFunc): scp frame drop1 request_scp(1 to 0)
D/ExynosCameraHAL2( 123): DEBUG(m_mainThreadFunc)(0x10): No more service requests left in the queue
E/Camera2-ProFrameProcessor( 123): processNewFrames: Camera 0: Error getting next frame: Success (0)
D/mali_winsys( 607): new_window_surface returns 0x3000
D/ExynosCameraHAL2( 123): (m_sensorThreadFunc): scp frame drop1 request_scp(1 to 0)
E/Camera2-ProFrameProcessor( 123): processNewFrames: Camera 0: Error getting next frame: Success (0)
D/ExynosCameraHAL2( 123): (m_sensorThreadFunc): scp frame drop1 request_scp(1 to 0)
E/Camera2-ProFrameProcessor( 123): processNewFrames: Camera 0: Error getting next frame: Success (0)
D/ExynosCameraHAL2( 123): (m_sensorThreadFunc): scp frame drop1 request_scp(1 to 0)
E/Camera2-ProFrameProcessor( 123): processNewFrames: Camera 0: Error getting next frame: Success (0)
D/ExynosCameraHAL2( 123): (m_sensorThreadFunc): scp frame drop1 request_scp(1 to 0)
E/Camera2-ProFrameProcessor( 123): processNewFrames: Camera 0: Error getting next frame: Success (0)
D/ExynosCameraHAL2( 123): (releaseStream): stream_id(0)
D/ExynosCameraHAL2( 123): (releaseStream): START Waiting for (indirect) sensor thread termination
D/SignalDrivenThread( 123): (virtual bool android::SignalDrivenThread::threadLoop()): Thread Terminating by SIGNAL
D/ExynosCameraHAL2( 123): (releaseStream): END Waiting for (indirect) sensor thread termination
D/ExynosCameraHAL2( 123): (releaseStream): START Waiting for (indirect) stream thread release - line(2324)
D/ExynosCameraHAL2( 123): (releaseStream): END Waiting for (indirect) stream thread release - line(2329)
D/ExynosCameraHAL2( 123): (releaseStream): START Waiting for (indirect) stream thread termination
D/SignalDrivenThread( 123): (virtual bool android::SignalDrivenThread::threadLoop()): Thread Terminating by SIGNAL
D/ExynosCameraHAL2( 123): (releaseStream): END Waiting for (indirect) stream thread termination
D/SignalDrivenThread( 123): DEBUG(virtual android::SignalDrivenThread::~SignalDrivenThread()):
W/Camera2-Device( 123): release: While disconnecting stream 0 from native window, the native window died from under us
D/ExynosCameraHAL2( 123): (releaseStream): stream_id(2)
W/ExynosCameraHAL2( 123): (releaseStream): Stream Not Exists
D/ExynosCameraHAL2( 123): (releaseReprocessStream): stream_id(8)
D/ExynosCameraHAL2( 123): (releaseStream): stream_id(5)
D/ExynosCameraHAL2( 123): START stream thread release 2311
D/ExynosCameraHAL2( 123): END stream thread release 2317
W/libutils.threads( 123): Thread (this=0xb75fc878): don't call join() from this Thread object's thread. It's a guaranteed deadlock!
D/ExynosCameraHAL2( 123): (HAL2_camera_device_close): ENTER
D/ExynosCameraHAL2( 123): (~ExynosCameraHWInterface2): ENTER
D/ExynosCameraHAL2( 123): (HAL2::release): ENTER
D/SignalDrivenThread( 123): (virtual bool android::SignalDrivenThread::threadLoop()): Thread Terminating by SIGNAL
D/SignalDrivenThread( 123): (virtual bool android::SignalDrivenThread::threadLoop()): Thread Terminating by SIGNAL
D/ExynosCameraHAL2( 123): (HAL2::release): START Waiting for (indirect) stream thread 1 termination
D/ExynosCameraHAL2( 123): (HAL2::release): END Waiting for (indirect) stream thread 1 termination
D/SignalDrivenThread( 123): DEBUG(virtual android::SignalDrivenThread::~SignalDrivenThread()):
D/ExynosCameraHAL2( 123): (HAL2::release): START Waiting for (indirect) sensor thread termination
D/ExynosCameraHAL2( 123): (HAL2::release): END Waiting for (indirect) sensor thread termination
D/SignalDrivenThread( 123): DEBUG(virtual android::SignalDrivenThread::~SignalDrivenThread()):
D/ExynosCameraHAL2( 123): (HAL2::release): START Waiting for (indirect) main thread termination
D/ExynosCameraHAL2( 123): (HAL2::release): END Waiting for (indirect) main thread termination
D/SignalDrivenThread( 123): DEBUG(virtual android::SignalDrivenThread::~SignalDrivenThread()):
D/ExynosCameraHAL2( 123): (HAL2::release): EXIT
D/ExynosCameraHAL2( 123): (~ExynosCameraHWInterface2): EXIT
D/ExynosCameraHAL2( 123): (HAL2_camera_device_close): EXIT
I/Camera2 ( 123): Camera 0: Closed
I/Camera2ClientBase( 123): Closed Camera 0
W/AudioFlinger( 123): session id 15 not found for pid 123
W/AudioFlinger( 123): session id 16 not found for pid 123
W/InputMethodManagerService( 368): Got RemoteException sending setActive(false) notification to pid 1884 uid 10030