blob: e1507d4314b8579480d4feef86291fd334f5fdf5 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
#ifndef __LITMUS_JOBS_H__
#define __LITMUS_JOBS_H__
void prepare_for_next_period(struct task_struct *t);
void release_at(struct task_struct *t, lt_t start);
long complete_job(void);
#endif
|