Hi, I had a design problem of a Linux module (Linux 2.6.11) that lead me to do this:
int work_fn(void* data); task_t my_task; task_t* kthread = kthread_create(work_fn, NULL, "Task 1"); // assume kthread create was successfully... my_task = *kthread; // change what current maceo points to... kthread->thread_info->task = &my_task; ... ... wake_up_process(&my_task); ... .. well... is it dangerous to change what current macro points to through changing thread_info->task? Please help! Thanks for help in advance! -- =========== Samer Sarhan. "To understand recursion, you need to understand recursion." http://samersarhan.blogspot.com - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [EMAIL PROTECTED] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/