Android Question Crash during debug

svitol

Member
Hi, my app Android work fine and not have any bug in debug and release mode, but during the debugging crash if i'm wat any 273 seconds.
I have this message in unfiltered log.
Help me
Thread[2,tid=7312,WaitingInMainSignalCatcherLoop,Thread*=0xb400007a89026000,peer=0x15101720,"Signal Catcher"]: reacting to signal 3
Wrote stack traces to tombstoned
 

svitol

Member
The error occurred only when i have a breakpoint :


mTransformHintInUse=00 mAutoPrerotation=0
FIFO(0):
(mConsumerName=VRI[all_orders]#6(BLAST Consumer)6, mConnectedApi=1, mConsumerUsageBits=2304, mId=545e00000006, producer=[21598:gruppoedico.partner], consumer=[21598:gruppoedico.partner])
Slots:
>[00:0xb400007a102f6100] state=ACQUIRED 0xb4000079f157c700 frame=552 [1218x 551:1248, 1]
[01:0x0] state=FREE
[02:0x0] state=FREE
[03:0x0] state=FREE
[VRI[all_orders]#6](f:0,a:3) producer disconnected before: mAbandoned=0
- BufferQueue mMaxAcquiredBufferCount=2 mMaxDequeuedBufferCount=2
mDequeueBufferCannotBlock=0 mAsyncMode=0
mQueueBufferCanDrop=0 mLegacyBufferDrop=1
default-size=[1218x540] default-format=1 transform-hint=00 frame-counter=562
mTransformHintInUse=00 mAutoPrerotation=0
FIFO(0):
(mConsumerName=VRI[all_orders]#6(BLAST Consumer)6, mConnectedApi=1, mConsumerUsageBits=2304, mId=545e00000006, producer=[21598:gruppoedico.partner], consumer=[21598:gruppoedico.partner])
Slots:
>[00:0xb400007a102f6400] state=ACQUIRED 0xb4000079f09fb380 frame=562 [1218x 540:1248, 1]
[01:0x0] state=FREE
[02:0x0] state=FREE
[03:0x0] state=FREE
[VRI[all_orders]#6](f:0,a:3) producer disconnected before: mAbandoned=0
- BufferQueue mMaxAcquiredBufferCount=2 mMaxDequeuedBufferCount=2
mDequeueBufferCannotBlock=0 mAsyncMode=0
mQueueBufferCanDrop=0 mLegacyBufferDrop=1
default-size=[1218x551] default-format=1 transform-hint=00 frame-counter=588
mTransformHintInUse=00 mAutoPrerotation=0
FIFO(0):
(mConsumerName=VRI[all_orders]#6(BLAST Consumer)6, mConnectedApi=1, mConsumerUsageBits=2304, mId=545e00000006, producer=[21598:gruppoedico.partner], consumer=[21598:gruppoedico.partner])
Slots:
>[00:0xb400007a102f6600] state=ACQUIRED 0xb400007a10315180 frame=588 [1218x 551:1248, 1]
[01:0x0] state=FREE
[02:0x0] state=FREE
[03:0x0] state=FREE
Thread[2,tid=22017,WaitingInMainSignalCatcherLoop,Thread*=0xb400007a89026000,peer=0x15380420,"Signal Catcher"]: reacting to signal 3
Skipped: false 5 cost 83.37094 refreshRate 16557173 bit true processName gruppoedico.partner
Wrote stack traces to tombstoned
 
Upvote 0

emexes

Expert
Licensed User
Is your app doing anything during those 273 seconds (I'm not quite sure what 'wat' is; could be "wait", could be "watch" variable).

What happens if you set up a dummy timer that fires every second and increments a dummy Int? Perhaps Android or the debugger is thinking that your app has finished or terminated.
 
Upvote 0
Top