Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

15
votes
2answers
1k views

Win32 - Backtrace from C code

I'm currently looking for a way to get backtrace information under Windows, from C code (no C++). I'm building a cross-platform C library, with reference-counting memory management. It also have an ...
11
votes
9answers
2k views

How to extract debugging information from a crash

If my C++ app crashes on Windows I want to send useful debugging information to our server. On Linux I would use the GNU backtrace() function - is there an equivalent for Windows? Also, is there a ...
9
votes
3answers
131 views

stacktrace and functions in namespaces

I am trying to get a backtrace at some point of the execution of my (c++) program. for that I am using backtrace and backtrace_symbols. Something along this lines: std::string stacktrace( unsigned ...
9
votes
4answers
1k views

Getting the backtrace from the catch block

I am using backtrace to get the information from where the exception is thrown. In the constructor of my exception, I am storing the backtrace in a std::string, and in the catch block for exceptions ...
7
votes
4answers
321 views

Is there a C equivalent for Perl's Carp module?

In some projects I've done in C, I've liked using the following macros which work similar to Perl's warn and die subroutines: #include <stdio.h> #include <stdlib.h> #define warn(...) \ ...
7
votes
6answers
4k views

How can I get PHP to produce a backtrace upon errors?

Trying to debug PHP using its default current-line-only error messages is horrible. How can I get PHP to produce a backtrace (stack trace) when errors are produced?
6
votes
5answers
864 views

No more gdb in XCode console when build for iPhone simulator

Usually I use gdb backtrace to debug my application, but recently I can no longer do it when testing on iPhone simulator. The blue gdb word stops being displayed on console, and nothing happens when I ...
6
votes
2answers
1k views

How to force Google Chrome to show backtrace on exception?

Is it possible (using plugin or maybe some config option) to make javascript error console to show error backtrace?
4
votes
1answer
157 views

PHP trace for Form post

A little background, I have a client that has a legacy php site that has been converted to python/django in the last 12 months. However they are still using the php site while phasing it out. Some ...
4
votes
3answers
117 views

Function calls seen before _start and main in backtrace

I received a backtrace of my program (qt app running on RHEL 5.3) from a coworker and as I was analyzing it I found something I could not explain. If you look at this backtrace, you will notice the ...
4
votes
3answers
481 views

backtrace by SIGSEGV

I'm debugging an application write in ansi C, a multiple threads program. Sometime, in the main thread cause a SIGSEGV fault. (gdb) backtrace full #0 0x0000000000000000 in ?? () No symbol table info ...
4
votes
1answer
3k views

Getting the current stack trace on Mac OS X

I'm trying to work out how to store and then print the current stack in my C++ apps on Mac OS X. The main problem seems to be getting dladdr to return the right symbol when given an address inside the ...
3
votes
3answers
145 views

x86_64 calling conventions and stack frames

I am trying to make sense out of the executable code that GCC (4.4.3) is generating for an x86_64 machine running under Ubuntu Linux. In particular, I don't understand how the code keeps track of ...
3
votes
1answer
67 views

Getting receiver information from backtrace

From an error backtrace $!.backtrace, you can extract the method names for each step. I want to further extract the receiver of each method call. I am sure there is a way to do this because I saw this ...
3
votes
2answers
249 views

GDB cannot show the stack and shows “#1 0x0000000000000000 in ?? ()”

I have a multi-threaded C++ program that deadlocks in some rare cases. The problem is hard to reproduce and I can only reproduce it in a remote machine. The method I want to use for solving this ...
3
votes
1answer
272 views

GDB: Question about relative and absolute paths to files in backtraces

I have question about gdb or gcc (but not firefox). I see only absolute paths in gdb when i debugging firefox. Example: 5 0x01bb0c52 in nsAppShell::ProcessNextNativeEvent (this=0xb7232ba0, ...
3
votes
2answers
574 views

what makes backtrace() crash(SIGSEGV ) on Linux 64 bit

I am developeing an application on linux where i wanted to have backtrace of all running threads at a particular frequency. so my user defined signal handler SIGUSR1 (for all threads) calls ...
3
votes
2answers
424 views

After the Ruby interpreter segfaults, is it possible to get the Ruby backtrace from the corefile?

Note: I'm using a segfault that I encountered whilst using the libxml-ruby gem to illustrate the question, but I've since fixed my problem with said gem. What this question is really about is viewing ...
3
votes
2answers
286 views

java: printing current backtrace

is there a way to add a command in Java to add the current backtrace ? I'm writing a red5 application and the appDisconnect function is being called twice. whenever a user changes room. I want to add ...
3
votes
1answer
89 views

determing calling object when working with dlopen() objects

I'm writing a (C) program which utilizes a plugin system via dlopen(). The stumbling block I'm running across is that the main program exports a few functions which really need to know the plugin that ...
3
votes
4answers
390 views

A simple, uniform and portable way of including tracing and backtracing into a C program

GNU libc's backtrace and In-circuit emulators/debuggers are not always available when porting code to a new platform, especially when the target is a micro C compiler such as for the Z80. (Typically a ...
3
votes
1answer
456 views

Trace a deadlock in Ruby

I use BrB to share a datasource for various worker processes in Ruby 1.9 that I fork with Process#fork like the following: Thread.abort_on_exception = true fork do puts "Initializing data source ...
2
votes
2answers
44 views

How to “decrypt” linker method names?

I'm using backtrace to print application's stack trace and I'm getting something like libQtCore.so.4(_ZN11QMetaObject8activateEP7QObjectPKS_iPPv+0x843) [0x7f889d20cf33] ...
2
votes
1answer
70 views

How to fix backtrace line number error in C++

I got a problem while wants to trace some information on program catches exceptions. I used the function below: extern "C" void log_backtrace() { // Dump the callstack int callstack[128]; ...
2
votes
1answer
130 views

Printing full backtrace in c++

I want to dump a backtrace from a C++ program in Linux in a similar format as it is done in gdb. I tried to use the backtrace() and backtrace_symbols() functions for this purpose. These returned ...
2
votes
1answer
48 views

Where's the rest of the stacktrace?

I have a test that is raising an error. To track down the problem I ended up adding this method to a model called NodeAffiliation: def initialize a1, a2 raise "kaboom" end and then I get this ...
2
votes
2answers
445 views

StackWalk64 on Windows - Get symbol name

Alright, second question on SO in one day. Looks like Windows programming makes me happy... : S I'm currently trying to get the function call stack on a Win32 executable. This morning, I've also ...
2
votes
3answers
119 views

Tell How Function was called

I've looked at debug_backtrace but so far it doesn't do what I need it to do. I need to know whether the function I'm calling was 'called' or 'echo-ed'. Like this: function hello() { //blah ...
2
votes
0answers
169 views

Is shoulda destroying my backtraces?

I have a test more or less like this: class FormDefinitionTest < ActiveSupport::TestCase context "a form_definition" do setup do @definition = SeedData.form_definition # ... ...
2
votes
2answers
286 views

Getting pointer to bottom of the call stack and resolving symbol by address (like dladdr) under Windows?

I want to implement an analog of backtrace utility under windows in order to add this information to exception for example. I need to capture return addresses and then translate it into symbols ...
2
votes
1answer
258 views

Get variables in scope at each PHP backtrace level?

Is there a way to view the variables set in each stack frame in a backtrace? I can come pretty close with a combination of debug_backtrace(true) to get the objects, get_object_vars on each object to ...
2
votes
3answers
22k views

Uncaught TypeError: Cannot read property 'length' of undefined

I have a plugin that access the length property on many elements. However, the javascript console points to line 12 of jquery.min.js. How can I backtrace to find which line of my plugin has null ...
2
votes
2answers
484 views

Is it normal for C++ static initialization to appear twice in the same backtrace?

I'm trying to debug a C++ program compiled with GCC that freezes at startup. GCC mutex protects function's static local variables, and it appears that waiting to acquire such a lock is why it freezes. ...
2
votes
2answers
1k views

Any porting available of backtrace for uclibc?

We are running the uclibc linux on ARM 9. The problem is uclibc doesn't support backtrace. When a core dump happens, I cannot grab the call stack. Does anyone have a good solution for that? For ...
2
votes
2answers
428 views

Thread stack backtraces when program running under valgrind is interrupted

I have a server program, which doesn't have a very clean/graceful shutdown (not supposed to terminate in general). When tracing memory leaks, I run it under valgrind, but finally have to kill the ...
2
votes
3answers
312 views

Is there a gcc macro for determining that frame pointers are not eliminated?

When -fomit-frame-pointer is used (automatic for various -O settings), performing a backtrace is problematic. I am wondering if there is a way of determining at compile time that the code is compiled ...
2
votes
2answers
741 views

Generating C++ BackTraces in OS/X (10.5.7)

I've been utilizing backtrace and backtrace_symbols to generate programmatic stack traces for the purposes of logging/diagnosis. It seems to roughly work, however, I'm getting a little bit of ...
1
vote
3answers
50 views

Backtracking in Java debug

I have been searching for an answer to if it's possible to backtrack when doing Java debugging. For instance if I have the code: int x = 1 int y = 0 //Exception will happen here int z = x/y And if ...
1
vote
1answer
198 views

iOS SIGABRT in Main.m (backtrace provided)

Getting the SIGABRT error in main.m. I have listed the back trace form the console to see if someonbe could point me in the right direction. #0 0x94d77c5a in __kill () #1 0x94d77c4c in ...
1
vote
1answer
97 views

How to show line numbers in D backtraces?

I have the following sample code in D: import std.stdio; int g(int i) { auto l = [1, 2, 3, 4]; return l[i]; } void f(int i) { writeln(g(i)); } void main(string[] args) { f(1); ...
1
vote
1answer
70 views

Linux(MIPS): Temporarily “change” register contents when viewing core dump

Some of the threads in my app are sat in optimized functions and when I debug the app, gdb can't backtrace from those functions. But I've looked at the assembler and can partially unwind the stack by ...
1
vote
3answers
50 views

How can a software architecture be used to answer the non functional requirements of a system? [closed]

Can high level design or architectur design be used to determine budget? project time? resources? and even non functional requirements like performance, reliability, availability...? <------> Ok ...
1
vote
0answers
83 views

500 Internal Server Error on directory index [closed]

localhost/index.html works but localhost/ doesnt. Apache cant redirect to index if I don't specify it! Checked DirectoryIndex index.php index.html, there is no rewrite on the root and the error.log ...
1
vote
2answers
90 views

Can not get any information from gdb backtrace

I have a release version server process running under linux 64-bit systems. It got crashed and left a coredump file. I use gdb to debug it like this: gdb svr coredump file And got the following ...
1
vote
2answers
175 views

Why does PHPUnit hide my xdebug backtrace?

I have PHPUnit and xdebug installed, and in my php.ini files for CLI I've got: display_errors = On xdebug.default_enable = 1 I've verified that an xdebug backtrace is printed when I create an error ...
1
vote
2answers
194 views

Javascript backtrace

How to I get a backtrace in Javascript? Ideal features: entry function name, or some meaningful identifier for anonymous functions, argument list at each level, line numbers. Can this be done in ...
1
vote
1answer
148 views

BAcktracing on Linux 64 bit from Signal Handler when malloc/free on callstack

below is the sample source i want to use on " Red Hat Enterprise Linux 5.5 (Tikanga) Kernel 2.6.18-194.el5xen x86_64" OS machine. The general idea is i want to have backtrace of other thread. so i ...
1
vote
2answers
93 views

How can I track failed file inclusions with backtrace?

Asking for decent thoughts about this: I'd like to implement some mechanism in PHP code that can run any external code and calls a callback function if one of the inclusions fails therein (include, ...
1
vote
1answer
213 views

GDB backtrace don't show function names on Mac

I was testing some things with gdb with this code (it's a wrong code, i use it just for testing purposes): #import <Foundation/Foundation.h> int main (int argc, char **argv) { ...
1
vote
1answer
209 views

Getting a backtrace of other thread

In Linux, to get a backtrace you can use backtrace() library call, but it only returns backtrace of current thread. Is there any way to get a backtrace of some other thread, assuming I know it's TID ...

1 2