KTHREAD_RUN(9) Driver Basics KTHREAD_RUN(9)NAMEkthread_run - create and wake a thread.SYNOPSISkthread_run(threadfn, data, namefmt, ...);ARGUMENTSthreadfn the function to run until signal_pending(current). data data ptr for threadfn. namefmt printf-style name for the thread. ... variable argumentsDESCRIPTIONConvenient wrapper for kthread_create followed by wake_up_process. Returns the kthread or ERR_PTR(-ENOMEM).COPYRIGHTKernel Hackers Manual 2.6. July 2010 KTHREAD_RUN(9)
| Related Man Pages |
|---|
| kthread(9) - netbsd |
| trace_printk(9) - centos |
| pthread_getname_np(3) - netbsd |
| pthread_getspecific(3t) - hpux |
| securityfs_create_file(9) - suse |
| Similar Topics in the Unix Linux Community |
|---|
| This application is eating up the CPU |
| Passing socket struct between kernel threads - module programming |