I have one simple question about multithreading. I do a program which will start about 30 threads at the same time. Although I can write special function for each threads, I am interested if to write the only one thread function is possible (I know - it IS possible, but I want the "errorless" and "bluescreenless" code... Then I start 30 threads (I use MFC, so AfxBeginThread will be called) and all threads will have the same function. Each thread will use another data, of course. Is this possible ?