Tagged Questions
The totalview tag has no wiki summary.
9
votes
6answers
782 views
How big can a malloc be in C?
I have a malloc in C that is 26901^2*sizeof(double)
This got me thinking what the largest value can be here?
Also, would I have any problems defining a macro to access this 2D array?
#define ...
2
votes
1answer
164 views
How to Write Native C++ Debugger Visualizers in gdb/ TotalView for Complicated Types
How to Write Native C++ Debugger Visualizers in gdb/ TotalView for Complicated Types.
i Mean suppose we have one complex type which contains again more different types.
how to get debug symbol of ...
2
votes
2answers
244 views
Malloc call on delete[] showing up as memory leak in totalview
I am using HDF5 to read a string in to a char* allocated by new[]. I then use a string::assign() call to copy this data to where I actually want it. I then call delete[] on that char*. This is ...
1
vote
2answers
117 views
Totalview: is there a way to hardcode a break point?
I have a parallel (MPI) c/c++ program that from time to time leads to an error under certain conditions. Once the error occurs, a message is printed and the program exits; I'd like to set a break ...
1
vote
1answer
351 views
How do you set the current directory of a debugged process?
I have an application that is sensitive to the directory it gets invoked from — it loads some files using relative paths.
When I start the program through a debugger, how can I control what the ...
0
votes
0answers
8 views
total view debugger - debugging a process thats forked from a startup process at launch
I have application that has two executables. One that we launch and it forks n instances of the other.
Now I have to debug the second tsk file at launch. I can do it later using the attach to process ...
0
votes
0answers
33 views
is there any option to load libraries in TotalView before loading main ececutable file?
is there any option to load libraries in TotalView before loading main executable file?
i have to debug a file using ToatalView debugger. before that i have to load another libraries which are related ...
0
votes
1answer
129 views
How do i view source code in totalview?
I just fired up totalview on my "hello world" application (c++) and i only get to view the assembly code.
Is there any settings/flags i need to set to view the source code? Menubar->View->Source ...
0
votes
1answer
74 views
How do you stop in TotalView after an MPI Error?
I am using TotalView and am getting an MPI_Error. However, Totalview does not stop on this error and I can't find where it is occurring. I believe this also applies to GDB.
0
votes
4answers
153 views
how to represent int * as array in totalview?
How do I 'dive' an int * which points to a dynamically allocated array of integers and represent it as a fixed int[] array? Put otherwise, if I dive an int * it shows the address and the int pointed ...