1. NAME

hrtimer_start - (re)start an hrtimer on the current CPU

2. SYNOPSIS

int hrtimer_start(struct hrtimer *  timer , ktime_t  tim , const enum hrtimer_mode  mode );

3. ARGUMENTS

timer
    the timer to be added

tim
    expiry time

mode
    expiry mode: absolute (HRTIMER_MODE_ABS) or relative (HRTIMER_MODE_REL)

4. RETURNS

0 on success 1 when the timer was active

5. COPYRIGHT