I have released a new Cygwin binary for 20050615. I am releasing it in rar format this time because of the space savings. http://mike-austin.com/io - Jeff...
... This was brought up on the list about a week ago, and will be fixed in the next release. ... -- Jeremy Tregunna jtregunna@......
Jeremy Tregunna
jtregunna@...
Jul 2, 2005 11:28 pm
6601
I'm using map() to build a lists of file attributes, and was stumped until I read that map() is currently destructive. There's select() and selectInPlace(),...
I'm at a point now where coroutines are needed to deal with such things as sockets and animation. In cygwin, once I start playing with coroutines it starts...
... I have had and have seen a few problems myself. One that was reported to me the other day on IRC was very simple: # Something similar A := Object clone do(...
Brian Mitchell
binary42@...
Jul 5, 2005 10:41 pm
6605
All coroutine related crashes I've had in the past have been due to incorrect code in the part of Io that manipulates the setjmp data. It's possible that the...
On Tue, 05 Jul 2005 17:49:57 -0700, "Mike Austin" <mike_ekim@...> ... Other issues I've had in the past, depending on the GCC version used, is related to...
Thanks for the help. I think I've solved it - Coro_new() returns a calloc() of "sizeof(Coro) + CSTACK_STACKSIZE", and it used as the coro and stack. Guess...
... Did you try keeping a buffer before the start of the stack? To be safe, you could use 100 bytes like they do for the mingw section. MSC only needed...
Given the recent unpleasantness with the coroutines on some platforms, are there any plans to have a comprehensive and automated test suite, particularly for...
... I've added a "- 128" and now the tests seem to pass. Another issue seems to be creating a coroutine before glutMainLoop() is called if your app is a glut...
... Glad I could help. Unfortunately, I have not worked with GLUT, so I'm not sure what the problem might be. You could adapt my stack fence to see if it's...
Freeglut for Windows was taking 100% of the cpu so I found a solution. I e-mailed the freeglut team and asked them to add it to the distribution. In...
Since OpenGL 1.1, you can supply glTexImage2D() with a null texture indicating you want texture space allocated but uninitialized. Can you add the attached...
I just looked and you were right. The patch fixes it. I will submit a proper patch later unless you do it first. I might update the binary. Mike, do you know...
... My CPU heats up when at 100% cpu, plus it just looks bad when doing nothing. Old glut does not take 100% of my cpu. ... Actually, the 1000ms timeout...
Hey all, 'Inertia' is a UI/Desktop environment idea I've been working on for a few years now, and I've implemented the latest version in Io, called Inertia-Io....
Hi Steve, This is a patch for DOConnection.io so that you can send more than three arguments to remove objects. Christophe 166c166 < result := target...
Christophe Poucet
christophe.poucet@...
Jul 8, 2005 7:51 am
6621
Sorry about the last mail, this one is better. The following is a patch to fix DOConnection so you can have more than three parameters to methods. (ran as:...
Christophe Poucet
christophe.poucet@...
Jul 8, 2005 7:52 am
6622
Dear all, I think that split should return empty strings for places where it's surrounded by two delimiters. What I mean is: "|a||" split("|") should return...
Christophe Poucet
christophe.poucet@...
Jul 8, 2005 9:19 am
6623
Dear, I have implemented a basic List filter in c. It still has a few issues (for instance when the code calls return). However it works as supposed: ...
Christophe Poucet
christophe.poucet@...
Jul 8, 2005 10:00 am
6624
It seems that List already has select which does what filter does, so I guess my last post was useless. However I -would- like to suggest to move away with...
Christophe Poucet
christophe.poucet@...
Jul 8, 2005 10:15 am
6625
... Thanks Chris, I've added your patch. Cheers, -- Steve...
... Sometime the indexes are useful, although I think they should be optional just like other foreach methods. For efficiency, I wouldn't mind having a...