Re: [Pharo-users] Iceberg: Installing a baseline from a self hosted Git/Gitea repository branch

2020-07-19 Thread Offray Vladimir Luna Cárdenas
Thanks a lot Christophe! It worked like a charm. Now I'm able to build a shareable installation baseline that uses external git repositories not hosted in the oligopolistic providers by downloading them with Iceberg and loading from the hard disk with Metacello. I have updated the Grafoscopio readm

Re: [Pharo-users] UFFI asynchronous callbacks

2020-07-19 Thread Ben Coman
Hi Asam, On Sun, 19 Jul 2020 at 21:38, ASAM wrote: > > Hello Ben, > > I quickly made a dummy DLL to limit the problem to the essentials. Great idea. A more generic example is attractive for people to examine and help out. I browsed the code but I'm sorry it needs a deeper expertise than I have.

Re: [Pharo-users] UFFI asynchronous callbacks

2020-07-19 Thread ASAM
Hello Ben, I quickly made a dummy DLL to limit the problem to the essentials. I think my problem comes more from how I use the semaphore. I wanted to do that: only "semaphore signal", But that somehow doesn't work. Now i'm doing that "[ Processor yield. semaphore signal ] fork" (it work's) bu