site_archiver@lists.apple.com Delivered-To: darwin-kernel@lists.apple.com Hi Herb, As per you suggetions, I had tried using following thread call, IOCreateThread(com_My_driver::handle_request_loop, (void*) &thr_id[i]); But I am getting following error during compilation of my driver. error: no matches converting function 'handle_request_loop' to type 'void (*) (void*)' error: candidates are: void* com_My_driver::handle_request_loop(void*) When I tried out the following call, I am not getting the compilation error but my driver gets crash as soon as it calls IOCreateThread function. IOCreateThread((IOThreadFunc)&com_My_driver::handle_request_loop, (void*) &thr_id[i]); Please suggest to solve this problem. Thanks in advance, Yogesh Pahilwan _______________________________________________ Do not post admin requests to the list. They will be ignored. Darwin-kernel mailing list (Darwin-kernel@lists.apple.com) Help/Unsubscribe/Update your Subscription: http://lists.apple.com/mailman/options/darwin-kernel/site_archiver%40lists.a... This email sent to site_archiver@lists.apple.com