Search the web
Sign In
New User? Sign Up
langsmiths · Language Smiths
? 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 2295 - 2324 of 2746   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
2295
Hi, all, I put my "Zero Button Testing" project up on sourceforge. This is my exploration into the question: What if testing were built into the language?...
Carl Manaster
cmanaster
Offline Send Email
Feb 2, 2005
4:53 pm
2296
damn it sometimes. oh well, 3rd attempt (first, computer crashed, second, net crapped out and fouled up posting). yeah, I know, I have mostly just been lurking...
cr88192
Offline Send Email
Feb 11, 2005
3:55 am
2297
Im thinking about how sensible a language/compiler would be in which most of the syntax would be some kind of macro composed of more primitive directives. Do...
Bart van der Werf (Bl...
bluelive@...
Send Email
Feb 11, 2005
9:09 pm
2298
... dunno. ... dunno. ... context ... well, macros are very well possible. if you are not allready fammiliar with them, the macro facilites of languages like...
cr88192
Offline Send Email
Feb 12, 2005
5:15 am
2299
http://www.brics.dk/RS/00/24/BRICS-RS-00-24.pdf Bigwig seems to propose such a macro system which operates while building the parsetree. Altough i think they...
Bart van der Werf (Bl...
bluelive@...
Send Email
Feb 12, 2005
8:23 am
2300
... think ... dunno. paper looks like it could be interesting. ... of ... the ... binary ... application, ... the ... c++ ... dunno really. it was just a rough...
cr88192
Offline Send Email
Feb 13, 2005
4:07 am
2301
Hi gang, That paper on Bigwig that Bart mentioned is found on the BRICS site (Basic Research in Computer Science). I highly recommend perusal of that site's...
J. Stephen Riley Silber
jsrs701
Offline Send Email
Feb 15, 2005
7:45 pm
2302
perhaps Peter Van Roy can answer this: Is this a proper implementation of a Oz-like dataflow variable in a hypothetical join calculus language? (I'm very new...
James McCartney
james_e_mcca...
Offline Send Email
Feb 22, 2005
7:53 pm
2303
http://www.vlerq.org/vqo/47 Thoughts? -- Steve...
Steve Dekorte
stevedekorte
Offline Send Email
Feb 25, 2005
2:51 pm
2304
In the concatenative language Factor (which isn't a langsmith language), I've created an infix "minilanguage" to compliment the rest of the stack-based...
Ehrenberg Daniel
littledanehren
Offline Send Email
Feb 25, 2005
4:19 pm
2305
... What problem does it solve? What does it buy us to avoid system calls in a VM? -- __("< Marcin Kowalczyk \__/ qrczak@... ^^...
Marcin 'Qrczak' Kowal...
qrczak2
Offline Send Email
Feb 25, 2005
8:24 pm
2306
thoughts about trampolining in general or specifically to avoid blocking system calls? I first read about trampolining in "Implementing lazy functional ...
James McCartney
james_e_mcca...
Offline Send Email
Feb 25, 2005
10:07 pm
2307
hmm, no response. another approach, which seems like it would be a better fit for Io with its actors model support would be to do as Erlang does and treat OS ...
James McCartney
james_e_mcca...
Offline Send Email
Mar 7, 2005
8:19 pm
2308
... If your VM is single threaded (or is serialized by a mutex effectively to a single thread) then blocking on a system call makes the VM unresponsive to any...
James McCartney
james_e_mcca...
Offline Send Email
Mar 7, 2005
8:23 pm
2309
... If it returned to the calling code because it won't handle the syscall itself, it's also unresponsive: it doesn't run while the calling code handles the...
Marcin 'Qrczak' Kowal...
qrczak2
Offline Send Email
Mar 7, 2005
8:42 pm
2310
... Well, yes, I didn't understand how the technique on that webpage was supposed to work either. But in general you should be able to use trampolining to...
James McCartney
james_e_mcca...
Offline Send Email
Mar 7, 2005
8:58 pm
2311
... If I understand you correctly, Io supports that transparently with futures: http://www.iolanguage.com/Source/release/Io/_docs/ ...
Steve Dekorte
stevedekorte
Offline Send Email
Mar 7, 2005
9:30 pm
2312
... yes that would be the perfect mechanism for handling system calls. the system call itself though, should be handled in another OS thread so it doesn't...
James McCartney
james_e_mcca...
Offline Send Email
Mar 7, 2005
10:02 pm
2313
I'm not sure that the http://www.vlerq.org/vqo/47 makes much sense. Another way to achieve portability of system calls is to use a portability layer that is...
Steven Shaw
steshaw
Offline Send Email
Mar 8, 2005
1:42 am
2314
Anyone know of a good portable OS thread library (at least for posix and Windows)? -- Steve...
Steve Dekorte
stevedekorte
Offline Send Email
Mar 8, 2005
2:28 am
2315
... pthreads?...
Steven Shaw
steshaw
Offline Send Email
Mar 8, 2005
4:30 am
2316
... Does that require cygwin? -- Steve...
Steve Dekorte
stevedekorte
Offline Send Email
Mar 8, 2005
5:03 am
2317
... I don't beleive that, trampolines are very simple. The first interpreter I ever wrote used this technique. What you can do with trampolines is mind...
James McCartney
james_e_mcca...
Offline Send Email
Mar 9, 2005
1:57 am
2318
I haven't used pthreads on Windows but I don't think it requires cygwin. You need this library: http://sources.redhat.com/pthreads-win32/ Steve....
Steven Shaw
steshaw
Offline Send Email
Mar 9, 2005
3:00 am
2319
I still don't get what trampolines accomplish. I get the impression that it's a C friendly way of continuation passing? But since C doesn't have lambda's, how...
Mike
mike_ekim
Offline Send Email
Mar 9, 2005
7:06 am
2320
... read section 6.2 of the paper I referenced. it explains why it is necessary. ... you don't. continuation passing style doesn't mean that you restart...
James McCartney
james_e_mcca...
Offline Send Email
Mar 9, 2005
8:20 am
2321
Im thinking about using two part references in my runtime for Pluk. First is a pointer to a type instance the other is an object instance specific value. For a...
Bart van der Werf (Bl...
bluelive@...
Send Email
Mar 9, 2005
5:18 pm
2322
... E.g. Roberto Ierusalimschy, Luiz Henrique de Figueiredo, Waldemar Celes "The Implementation of Lua 5.0" ...
Marcin 'Qrczak' Kowal...
qrczak2
Offline Send Email
Mar 9, 2005
5:29 pm
2323
... here's an example. programmer writes this: f = { A(); B(); return C(); }; compiler translates it to this in trampoline style: Z = C; // tail call...
James McCartney
james_e_mcca...
Offline Send Email
Mar 9, 2005
5:36 pm
2324
Having values be passed around by a tag plus the value is a pretty common technique. The most common technique is to only have integer as a special value and...
James McCartney
james_e_mcca...
Offline Send Email
Mar 9, 2005
6:48 pm
Messages 2295 - 2324 of 2746   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