1. NAME

struct_hrtimer_sleeper - simple sleeper structure

2. SYNOPSIS



 
Sélectionnez
struct hrtimer_sleeper {
  struct hrtimer timer;
  struct task_struct * task;
};

3. MEMBERS

timer
    embedded timer structure

task
    task to wake up

4. DESCRIPTION

task is set to NULL, when the timer expires.

5. COPYRIGHT