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

Yahoo! Groups Tips

Did you know...
Message search is now enhanced, find messages faster. Take it for a spin.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 7489 - 7518 of 11910   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
7489
Hi all, especially Steve, This could be hairy. There seems to be some ugly interaction between Io's coroutines and C++'s stack frames. The following little...
Jonas Eschenburg
indyjo@...
Send Email
Dec 2, 2005
7:28 pm
7490
... Hi Jonas, Thanks for the bug report. Which Io release are you using? -- Steve...
Steve Dekorte
stevedekorte
Offline Send Email
Dec 3, 2005
12:31 am
7491
It's IoVM-2005-10-17....
Jonas Eschenburg
indyjo@...
Send Email
Dec 3, 2005
12:37 am
7492
... Thanks Jonas, I've added your fix and a fix for endsWithSeq(). Cheers, Steve...
Steve Dekorte
stevedekorte
Offline Send Email
Dec 3, 2005
10:09 am
7493
For the record: No crashing on Ubuntu Linux (Breezy) with Kernel 2.6.12 and IoVM-2005-10-17...
Jonas Eschenburg
indyjo@...
Send Email
Dec 3, 2005
1:28 pm
7494
... Earlier this year I posted some patches that included a coro stack fence and a modification to the start of stack for MSVC to prevent coro crashes. I...
Kevin Edwards
edwakev
Offline Send Email
Dec 3, 2005
9:30 pm
7495
... You're right: destructors are not called in C++ functions that are terminated prematurely, such as with Io's exceptions (based on coros). But, at the...
Kevin Edwards
edwakev
Offline Send Email
Dec 3, 2005
9:53 pm
7496
Attached is some Io code for a text alignment method for Sequence. If passed to a sequence, it will align it based on input, padding with spaces, or if a third...
Jeremy Tregunna
jtregunna_io
Offline Send Email
Dec 3, 2005
10:05 pm
7497
Quag just pointed out on IRC one problem with this; stripping self before padding. Attached is a new patch which doesn't do this. If you want to strip it, do...
Jeremy Tregunna
jtregunna_io
Offline Send Email
Dec 3, 2005
10:20 pm
7498
... This is an interesting idea. IIRC, the guy that did FreeType wrong an article on how to use C++ auto destructors with setjmp/longjmp. We could probably use...
Steve Dekorte
stevedekorte
Offline Send Email
Dec 3, 2005
11:25 pm
7499
... Oops, I meant wrote. :-) -- Steve...
Steve Dekorte
stevedekorte
Offline Send Email
Dec 4, 2005
1:06 am
7500
Hello, i downloaded IoFull-2005-10-17.tar.gz and tried to compile it. I got the following error: done ./io2c VMCode IoVMCode.io IoVMCode.c made IoVMCode.c from...
Thomas Preymesser
thopre_98
Offline Send Email
Dec 4, 2005
7:57 am
7501
... IoFull/vm/base/DynLib.c ... I'm on 10.4.3, and just removing the #ifdef block is not quite sufficient to get Io to compile under XCode 2. (I'm on XCode...
Paul Brown
fivesightprb
Online Now Send Email
Dec 4, 2005
7:57 am
7502
Hi Tomas, Apply http://scorch.dollyfish.net.nz/~quag/2005-10-17a-rc1.patch.gz to the vm directory. Check the list archives for further details on this issue. ...
Quag
quagath
Offline Send Email
Dec 4, 2005
8:05 am
7503
Thomas, Which compiler are you using? You might try removing "--param max-inline-insns-single=500" from vm/base/Makefile. Also, if you aren't running MacOS X,...
Jonas Eschenburg
indyjo@...
Send Email
Dec 4, 2005
9:30 am
7504
I discovered Io a couple days ago and it's an exciting language. I did find one little bug: Io version 20051017 Io> 2^3^2 ==> 64 That should be 2^(3^2)=512. I...
B. Filer
bafiler
Offline Send Email
Dec 4, 2005
12:30 pm
7505
... IOTOKEN_NAME(m)[0] == '^') But operators like ^++$ mean that my solution is not actually correct :-( It passed all the unit tests though, honest. Maybe...
B. Filer
bafiler
Offline Send Email
Dec 4, 2005
12:30 pm
7506
... Thanks for the patch, although it did not fix the crashing bug. The following seems to happen: 1. *func* needs to register an exception handler in order to...
Jonas Eschenburg
indyjo@...
Send Email
Dec 4, 2005
2:44 pm
7507
Why has IoFull-2005-10-17 been replaced with IoFull-2005-10-07 on the <http:// www.iolanguage.com/Downloads/> page? /Jon...
Jon Kleiser
jon_kleiser
Offline Send Email
Dec 4, 2005
3:23 pm
7508
... It is always possible to guard critical calls to Io functions using IoState_tryExec(). When an (Io) exception happens, you can handle it locally or rethrow...
Jonas Eschenburg
indyjo@...
Send Email
Dec 4, 2005
4:19 pm
7509
I think that is meant to be a 12 instead of a 10. Jonathan...
Quag
quagath
Offline Send Email
Dec 4, 2005
6:47 pm
7510
I made ad-hoc Audio binding patch for IoFull-2005-10-17 with source of IoDesktop-2005-09-10. I did followings: copy source from IoDesktop, and merge Audio/base...
MunSic Jeong
ruseel@...
Send Email
Dec 4, 2005
11:49 pm
7511
I've just skimmed a lot of the Io documentation, and overall I'm quite impressed. One thing confuses me, though. You mention in several places that the code...
Noah
noah_gibbs
Offline Send Email
Dec 4, 2005
11:50 pm
7512
I patched Scheduler.[hc] and Coro.[hc] to implement coroutines on Windows using fibers. You have to #define HAS_FIBERS to enable it. So far I haven't found any...
Jonas Eschenburg
indyjo@...
Send Email
Dec 5, 2005
12:20 am
7513
... A mix up - I've fixed it. Thanks for the report. -- Steve...
Steve Dekorte
stevedekorte
Offline Send Email
Dec 5, 2005
12:39 am
7514
... Take a look at the docs on Message. Io can do macros, but it's more powerful to use the fact that Io passes args by references to their expressions to get...
Steve Dekorte
stevedekorte
Offline Send Email
Dec 5, 2005
12:51 am
7515
... I posted a simple example at http://c2.com/cgi/wiki?HomoiconicExampleInManyProgrammingLanguages in the past. Io> b:=3 ==> 3 Io> a:=block(b=15) #assign the...
June Kim
junaftnoon
Offline Send Email
Dec 5, 2005
5:55 am
7516
... Excellent! Thanks. This is exactly what I was curious about. On a completely unrelated note, I'm trying to compile and play with Io, and failing because...
Noah Gibbs
noah_gibbs
Offline Send Email
Dec 5, 2005
6:07 am
7517
This is a well known issue and has been discussed many times ... just search the archives and you'll find the solution :-) I remember reading somewhere that...
Shashank Date
shanko_date
Offline Send Email
Dec 5, 2005
6:33 am
7518
... In fact, it was discussed very recently: http://groups.yahoo.com/group/iolanguage/message/7501 You also have to edit the makefile. -- Paul Brown ...
Paul Brown
fivesightprb
Online Now Send Email
Dec 5, 2005
6:43 am
Messages 7489 - 7518 of 11910   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

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