SIGABRT due double free

2005-11-24 Thread Fernando ApesteguĂ­a
ate: 24-nov-2005 9:27 Subject: Re: SIGABRT due double free To: gtk-app-devel-list@gnome.org Fernando ApesteguXa schrieb: > I'm developing a gtk/gnome application with two threads. An schema of > the application is this: > [SNIP] > > thread_func is updating data periodically with

Re: SIGABRT due double free

2005-11-24 Thread Andreas Stricker
Fernando ApesteguXa schrieb: I'm developing a gtk/gnome application with two threads. An schema of the application is this: > [SNIP] thread_func is updating data periodically with a sleep pause. At this point, I suppose the other thread is catching events normally (in fact, tabs of the noteboo

SIGABRT due double free

2005-11-23 Thread Fernando ApesteguĂ­a
Hi, I'll try to explain my problem as clear as possible: I'm developing a gtk/gnome application with two threads. An schema of the application is this: void thread_func(){ blah blah ... } main(){ blah blah ... pthread_create(thread_func); ... ... gtk_main(); } thread_func is updating data per