Have anyone tried porting windows driver code to Linux, and struck in replacing the WaitForMultipleObjects API to Linux.
WaitForSingleObject can be replaced with wait_event_interruptible..
But what about WaitForMultipleObjects.. I see post in which they are using pthread_cond_wait for user space application. What is the alternative for linux kernel space..
Thanks for your time..