Search the web
Sign In
New User? Sign Up
iolanguage · Io
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.

Messages

  Messages Help
Advanced
Messages 6598 - 6627 of 10708   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
6598
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...
jptdrake
Offline Send Email
Jul 2, 2005
3:10 am
6599
Dear all, When I try to build IoDesktop-2005-06-15 on Linux, it doesn't build the stand-alone ioServer executable, giving this error on link ...
Peter Hull
peterhull90
Offline Send Email
Jul 2, 2005
9:47 am
6600
... 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@...
Send Email
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(),...
Mike Austin
mike_ekim
Online Now Send Email
Jul 4, 2005
8:14 am
6602
i've read the map section in io but i dunnow how translate this : Map_0x10659088 to the data in my db...
bussiere bussiere
bussieresan
Offline Send Email
Jul 4, 2005
7:36 pm
6603
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...
Mike Austin
mike_ekim
Online Now Send Email
Jul 5, 2005
9:57 pm
6604
... 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@...
Send Email
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...
Chris Double
doublecnz
Offline Send Email
Jul 5, 2005
10:52 pm
6606
... After a little digging, I did find the source to cygwin's setjmp. The offsets into jmp_buf look correct: ...
Mike Austin
mike_ekim
Online Now Send Email
Jul 6, 2005
12:47 am
6607
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...
Chris Double
doublecnz
Offline Send Email
Jul 6, 2005
12:54 am
6608
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...
Mike Austin
mike_ekim
Online Now Send Email
Jul 6, 2005
2:23 am
6609
Never mind. :) I'm tired, and thought it was returning "sizeof(Coro) + calloc(...)". But it may still be something with stack alignment. Mike...
Mike Austin
mike_ekim
Online Now Send Email
Jul 6, 2005
2:44 am
6610
... 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...
Kevin Edwards
edwakev
Offline Send Email
Jul 6, 2005
5:58 am
6611
Given the recent unpleasantness with the coroutines on some platforms, are there any plans to have a comprehensive and automated test suite, particularly for...
Erik Max Francis
xihr
Online Now Send Email
Jul 6, 2005
6:44 am
6612
... 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...
Mike Austin
mike_ekim
Online Now Send Email
Jul 6, 2005
4:44 pm
6613
... 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...
Kevin Edwards
edwakev
Offline Send Email
Jul 6, 2005
10:09 pm
6614
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...
Mike Austin
mike_ekim
Online Now Send Email
Jul 6, 2005
11:52 pm
6615
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...
Mike Austin
mike_ekim
Online Now Send Email
Jul 7, 2005
3:35 am
6616
Can you tell me what you were doing that would cause 100% CPU usage? ... distribution....
jptdrake
Offline Send Email
Jul 7, 2005
5:50 pm
6617
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...
jptdrake
Offline Send Email
Jul 7, 2005
6:09 pm
6618
... 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...
Mike Austin
mike_ekim
Online Now Send Email
Jul 7, 2005
6:45 pm
6619
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....
Mike Austin
mike_ekim
Online Now Send Email
Jul 8, 2005
4:47 am
6620
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@...
Send Email
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@...
Send Email
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@...
Send Email
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@...
Send Email
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@...
Send Email
Jul 8, 2005
10:15 am
6625
... Thanks Chris, I've added your patch. Cheers, -- Steve...
Steve Dekorte
stevedekorte
Offline Send Email
Jul 8, 2005
4:14 pm
6626
... 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...
Mike Austin
mike_ekim
Online Now Send Email
Jul 8, 2005
4:22 pm
6627
... I like that idea. Maybe "continue" could be used to skip an item on map() to get the same effect? -- Steve...
Steve Dekorte
stevedekorte
Offline Send Email
Jul 8, 2005
5:14 pm
Messages 6598 - 6627 of 10708   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2007 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help