-
After my app is running for some time, the following exceptions happen, out of the blue (they are a bit different, in different runs). Anything I can learn from these exceptions to troubleshoot the cause?
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The most probable reason might be a stack overflow - i.e. the stack grows into the |
Beta Was this translation helpful? Give feedback.
The most probable reason might be a stack overflow - i.e. the stack grows into the
.bss
,.data
or.rwtext
segment.The A1 register is the stack-pointer at the time of the exception. You can check if there is anything at that address with tools like
readelf
(to check segments) ornm
(to check individual symbols)