Subj : One thread on several processors in multiprocessor system? To : comp.programming.threads From : yuliy Date : Tue Feb 01 2005 07:41 am Hello, I never thought befor deep about threads, but. I know that one thread can run on separate processor. but, can one thread runs on several processors? Say, simultaneously calculating sqrt(2), in one processor, and 2+2 on another? For example in the code: .... double x = sqrt(2); int i = 2 + 2; ..... Thanks .