Re: [Algorithms] General purpose task parallel threading approach
Brought to you by:
vexxed72
|
From: Gregory J. <gj...@da...> - 2009-04-13 22:23:11
|
> Also keep in mind that a 2 KB stack is likely to get overflowed REALLY > quickly with any real operations going on. > Nicholas "Indy" Ray Depends on how you define "real". You can do an awful lot of "real" work within 2K limits, especially if the data you are working on is owned by someone else (and therefore don't need to copy it into the thread stack). Greg |