Name
schedule_delayed_work — 
     put work task in global workqueue after delay
 
Synopsis
| bool schedule_delayed_work ( | struct delayed_work * dwork, | 
|  | unsigned long delay ); | 
 
Arguments
- dwork
- 
     job to be done
     
- delay
- 
     number of jiffies to wait or 0 for immediate execution
     
Description
   After waiting for a given time this puts a job in the kernel-global
   workqueue.