Subj : Re: Thoughts about threads in C++ To : comp.programming.threads From : James Talbut Date : Sun May 15 2005 03:53 pm "bala" wrote in message news:1116162554.199923.56860@g47g2000cwa.googlegroups.com... > I am searching for the code of a threading library, where user > threads > in a process are transparent to the kernel and process is > responsible > for scheduling them. I don't think you'll ever find it - I think it's outside the domain of a library to provide such features. Whatever you do you need some way to identify all the variables that are used within your parallel blocks that are also used outside of the block. And then you need to track all usages of those variables within the blocks. A library cannot do that (at least, not invisibly). OpenMP is (I believe) a specification of a compiler option to do the same thing. -- J.T. Please reply via the newsgroup. X-No-Acknowledgement X-Replace-Address X-No-Reject-Notice .