KERN-EXEC 3错误

1.Symbian S60 3rd FP1 SDK说明:This panic is raised when an unhandled exception occurs. Exceptions have many causes, but the most common are access violations caused, for example, by dereferencing NULL. Among other possible causes are: general protection faults, executing an invalid instruction, alignment checks, etc.   
    多由未处理的异常引起,比如:访问冲突、空指针、一般性保护错误、执行非法创建、队列检查等等。

2.Kern-Exec 3 crashes are often caused due to stack corruption or stack Overflow, prefer the use of heap to the stack. Be aware that recursive functions can eat the stack at runtime — this will lead to a Kern-Exec 3 panic.
    还经常由栈崩溃、栈溢出引起。对于这种情况,推荐使用堆而非栈。注意递归函数在运行时会造成栈溢出。

你可能感兴趣的:(Access,Symbian)