diff options
Diffstat (limited to 'runtime')
-rw-r--r-- | runtime/ChangeLog | 4 | ||||
-rw-r--r-- | runtime/autoconf-hrtimer-getset-expires.c | 6 |
2 files changed, 10 insertions, 0 deletions
diff --git a/runtime/ChangeLog b/runtime/ChangeLog index 8aea0411..62ecbec6 100644 --- a/runtime/ChangeLog +++ b/runtime/ChangeLog @@ -1,3 +1,7 @@ +2008-10-24 Josh Stone <joshua.i.stone@intel.com> + + * autoconf-hrtimer-getset-expires.c: New file. + 2008-10-17 Wenji Huang <wenji.huang@oracle.com> * task_finder_vma.c (__stp_tf_vma_get_free_entry): Initialize entry. diff --git a/runtime/autoconf-hrtimer-getset-expires.c b/runtime/autoconf-hrtimer-getset-expires.c new file mode 100644 index 00000000..951cb99b --- /dev/null +++ b/runtime/autoconf-hrtimer-getset-expires.c @@ -0,0 +1,6 @@ +#include <linux/hrtimer.h> + +void ____autoconf_func(struct hrtimer *t) +{ + hrtimer_set_expires(t, hrtimer_get_expires(t)); +} |