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 3.10 June 2014 KTHREAD_RUN(9)
| Related Man Pages |
|---|
| securityfs_create_file(9) - centos |
| wait_event_interruptible_exclusive_locked_irq(9) - centos |
| hdf_get_valuevf(3) - debian |
| pthread_getspecific(3t) - hpux |
| kthread_create(9) - netbsd |
| Similar Topics in the Unix Linux Community |
|---|
| This application is eating up the CPU |
| Passing socket struct between kernel threads - module programming |