On Tue, 12 Dec 2000, Eric Monsler wrote:
> There is something I don't understand here:
>
> > void
> > on_start_clicked (GtkButton *button,
> > gpointer user_data)
> > {
> > if (pthread_create(&THR, NULL, (void *) &work, NULL) != 0){
> > printf("Can't create thread\n");
> > exit(-1);
> > }
> >
> > work(NULL);
> > }
> >
>
>
> I appears to me that you are both starting a thread to do "work", and
> you are calling "work" directly from your on_start_clicked callback
> function.
>
That's right. What an idiot! I apologize.
I commented out the standalone call to work() and all is well. Beginner's
blunders.
Thank you!
_______________________________________________
gtk-list mailing list
[EMAIL PROTECTED]
http://mail.gnome.org/mailman/listinfo/gtk-list