python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Bus error 10 for initialisation of my skip list
how can I find the bus error 10 for the initiation process of my skip list???
struct leapList *initSkipList(struct leapList *skipList[]) {
int i;
for (i=0;i<maximum_level;i++)...
JamesL_22
Votes: 0
Answers: 0
Get return value of function when last called, without calling it again
I am new to using gdb.
I have a function, which I will call a() that gives a different value every time it is called. Another function add_to_array uses a() as a parameter. Here is an example:
add_to_...
Squarepeg
Votes: 0
Answers: 3
gdb watch a variable by address stop at where it cannot be modified
A program crashes. I use gdb to check, find that a private member of a instance is changed in a very weird way. This variable refreshRank,is only modified at line 283 and 286. I use gdb to watch refre...
Tokubara
Votes: 0
Answers: 1
Apachectl creates more than one process even with flag -X set
I am trying to use gdb to attach to apache2.4. Although I am running Apache HTTP Server as a single process, there are three process created. The problem is that I don't know which process to connect ...
Michał Kruk
Votes: 0
Answers: 1