Re: AW: threads & gtk

2006-08-05 Thread Peter \"Firefly\" Lund
On Sat, 5 Aug 2006, chabayo wrote: > ...fork() creates a copy (or less a copy if kernel has a workaround - i > dont now how that's handled) of memory? fork() does indeed create a copy. If you have a variable in the original process (= the parent), the child process will also have a variable --

AW: threads & gtk

2006-08-05 Thread chabayo
Am 05.08.2006 19:38:58 schrieb(en) Peter "Firefly" Lund: > I think you are looking for g_thread_create() and related functions. ...oh, yes. I found two links http://s1x.homelinux.net/documents/gtk/gtk_threads.html http://yolinux.com/TUTORIALS/GDK_Threads.html both make me focus the near advanta