# HG changeset patch # User Sebastien Decugis # Date 1295596117 -32400 # Node ID ff23fecac0b2214818e19f1d4b74b2d4b97f1142 # Parent 712a0bb8d3bff94eb823fc797691c5d188397754 Added documentation for rare segfault in FreeBSD 64bits (Profiling profile) diff -r 712a0bb8d3bf -r ff23fecac0b2 INSTALL.FreeBSD --- a/INSTALL.FreeBSD Fri Jan 21 16:18:39 2011 +0900 +++ b/INSTALL.FreeBSD Fri Jan 21 16:48:37 2011 +0900 @@ -100,3 +100,26 @@ # make test +---------------------------------- +Segmentation fault on program exit +---------------------------------- + +In case you encounter a segmentation fault on program termination like this: + [...] + freeDiameterd framework is terminated. + Segmentation fault: 11 (core dumped) + +with a backtrace like this: + #0 0x0000000801a414a0 in ?? () + #1 0x0000000800f99274 in __cxa_finalize () from /lib/libc.so.7 + #2 0x0000000800f460b7 in exit () from /lib/libc.so.7 + +You may try to add the following compilation directive in cmake: + -DSKIP_DLCLOSE:BOOL=ON + +Note: this segmentation fault was experienced with: + - FreeBSD 8.1 + - 64 bits architecture only. + - Profiling mode only. + +