[Pvfs2-cvs] commit by mtmoore in pvfs2/src/server: pvfs2-server.c
CVS commit program
cvs at parl.clemson.edu
Tue Jun 7 19:50:41 EDT 2011
Update of /projects/cvsroot/pvfs2/src/server
In directory parlweb1:/tmp/cvs-serv17203/pvfs2/src/server
Modified Files:
Tag: Orange-Branch
pvfs2-server.c
Log Message:
add backtrace handler to SIGABRT
Index: pvfs2-server.c
===================================================================
RCS file: /projects/cvsroot/pvfs2/src/server/pvfs2-server.c,v
diff -p -u -r1.269.4.13 -r1.269.4.14
--- pvfs2-server.c 7 Jun 2011 23:28:18 -0000 1.269.4.13
+++ pvfs2-server.c 7 Jun 2011 23:50:41 -0000 1.269.4.14
@@ -1187,8 +1187,10 @@ static int server_setup_signal_handlers(
sigaction (SIGQUIT, &new_action, NULL);
#ifdef __PVFS2_SEGV_BACKTRACE__
sigaction (SIGSEGV, &segv_action, NULL);
+ sigaction (SIGABRT, &segv_action, NULL);
#else
sigaction (SIGSEGV, &new_action, NULL);
+ sigaction (SIGABRT, &new_action, NULL);
#endif
/* ignore these */
More information about the Pvfs2-cvs
mailing list