I have a program that using a vector (called _library) that holds objects of the class 'thread' that i've created (holds a set of data, and allocating some stuff in its Constructor).
Now, i've tried to run my program, calling this line:
delete (_library[_currRunning]);
->and got the scary Segmentation fault message from my compiler.
I don't understand what is the problem here, since i perform boundary checks, and - what's more surprising: it works on other inputs, when i've tested it before!
In general, what can cause a segmentation fault when using 'delete', and how could i prevent such errors in my code?
In addition, i have a destructor for the 'thread' class, having this single line:
delete (_stack);
where _stack is a char* that i've allocated in the Ctor.
Here're my 'thread' object fields:
char* _stack;
int _tid;
void (*_thread_func)(void);
sigjmp_buf _jbuf;
Sync* _sync;
int _status;
In 'thread' Ctor, there is (between others) this line:
_stack = new char[STACK_SIZE];
And this is its Dtor:
delete[] _stack;
In my big program, i have this declaration:
vector<thread*> _library;
Is there any problem of using 'delete' inside my Destructor, instead of using 'free'?
_library? Obviously, you're not deletingthreadobjects directly. Also, it would be very helpful if you could give us the stack trace when the segfault occurs. – deft_code Mar 17 '11 at 19:54_libraryis filled withthread*objects and deallocating it. As you said, segmentation fault is occuring by this -delete (_library[_currRunning]);– Mahesh Mar 17 '11 at 21:00