On Tue, Mar 19, 2002 at 12:13:54PM -0800, Krishna Kondaka wrote: > I would like to know if there is a system call/library function > available in linux which prints the current stack trace of the > application. The Glib has a function g_on_error_stack_trace() which does this in a slightly hackish way by attaching gdb to the crashed program (to be called from a SIGSEGV handler). Look at gbacktrace.c there: http://cvs.gnome.org/bonsai/rview.cgi?cvsroot=/cvs/gnome&dir=glib/glib&module=. HTH, Johannes