Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 27046
b: refs/heads/master
c: 8d16b76
h: refs/heads/master
v: v3
  • Loading branch information
Stephen Hemminger authored and Linus Torvalds committed May 31, 2006
1 parent 54c3b08 commit 0148d17
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 760f1fce030ccc620ec430a8aff8fc604e7891ed
refs/heads/master: 8d16b76421f0b3216012ee2d7819355e1cb847e5
6 changes: 6 additions & 0 deletions trunk/kernel/hrtimer.c
Original file line number Diff line number Diff line change
Expand Up @@ -456,6 +456,7 @@ hrtimer_start(struct hrtimer *timer, ktime_t tim, const enum hrtimer_mode mode)

return ret;
}
EXPORT_SYMBOL_GPL(hrtimer_start);

/**
* hrtimer_try_to_cancel - try to deactivate a timer
Expand Down Expand Up @@ -484,6 +485,7 @@ int hrtimer_try_to_cancel(struct hrtimer *timer)
return ret;

}
EXPORT_SYMBOL_GPL(hrtimer_try_to_cancel);

/**
* hrtimer_cancel - cancel a timer and wait for the handler to finish.
Expand All @@ -504,6 +506,7 @@ int hrtimer_cancel(struct hrtimer *timer)
cpu_relax();
}
}
EXPORT_SYMBOL_GPL(hrtimer_cancel);

/**
* hrtimer_get_remaining - get remaining time for the timer
Expand All @@ -522,6 +525,7 @@ ktime_t hrtimer_get_remaining(const struct hrtimer *timer)

return rem;
}
EXPORT_SYMBOL_GPL(hrtimer_get_remaining);

#ifdef CONFIG_NO_IDLE_HZ
/**
Expand Down Expand Up @@ -580,6 +584,7 @@ void hrtimer_init(struct hrtimer *timer, clockid_t clock_id,
timer->base = &bases[clock_id];
timer->node.rb_parent = HRTIMER_INACTIVE;
}
EXPORT_SYMBOL_GPL(hrtimer_init);

/**
* hrtimer_get_res - get the timer resolution for a clock
Expand All @@ -599,6 +604,7 @@ int hrtimer_get_res(const clockid_t which_clock, struct timespec *tp)

return 0;
}
EXPORT_SYMBOL_GPL(hrtimer_get_res);

/*
* Expire the per base hrtimer-queue:
Expand Down

0 comments on commit 0148d17

Please sign in to comment.