|
From: Julian S. <js...@ac...> - 2008-10-16 22:08:22
|
At a guess I'd say your program segfaulted because of a stack overflow caused by infinite (or too much) recursion. I say that because (1) you have a number of identical frames on the stack, and (2) the faulting address .. > ==7850== Bad permissions for mapped region at address 0xA69DFF4 .. 0xA69DFF4 is just below a page boundary (the FF4 bit). J |