How do I utilize fibers best in my game code? Should it only be used to manage nonpreemptive context-switches while loading resources (i.e. files from disk)? Or do I allow all types of game entities to run in a fiber? How do I schedule?

C++ or pseudo code samples greatly appreciated!

link|improve this question

would you mind posting a link to exactly what you are referring to (fibers)? I have never heard of this term before, and am curious as to what you are talking about. – a_m0d Aug 24 '09 at 1:13
Tried to post Wikipedia link, but Stackoverflow couldn't handle it. Search for Fiber (computer science) in Wikipedia. – Jonas Byström Aug 24 '09 at 11:41
feedback

1 Answer

up vote 2 down vote accepted

Don't? It's like a thread only with very little CRT support (unlike threads) and some hidden memory requirements like stack and registers.

It may make non-system code easier to write but it complicates to an unjustifiable degree.

link|improve this answer
Fibers are notoriously subtle, and I've never heard of a major piece of production software that used them extensively and successfully (though I've heard of plenty that tried, then quit.) – Greg D Sep 2 '09 at 16:35
You never heard of Stackless Python (stackless.com) or Eve Online (eveonline.com)? – Jonas Byström Sep 3 '09 at 8:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.