Re: [Iup-users] Is Iup pthread safe?

2015-10-01 Thread John Spikowski
Hi Andy, IUP isn't thread safe by default but that doesn't mean it can't be done. Here is an example in Script BASIC (Windows & Linux) http://www.scriptbasic.org/forum/index.php/topic,335.0.html John On Fri, 2015-10-02 at 14:36 +1000, Andy Xiyue wrote: > Hi Scuri, > > > Recently I tried to u

[Iup-users] Is Iup pthread safe?

2015-10-01 Thread Andy Xiyue
Hi Scuri, Recently I tried to use IUP with more than one thread. My plan is simple, run IupMainLoop() in one thread and feed progress bar or text control in another thread. Theoretically I don't need to synchronize the IUP calls because the IupMainLoop() will process the events sooner or later. Ho