aboutsummaryrefslogtreecommitdiffstats
path: root/include/litmus/domain.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/litmus/domain.h')
-rw-r--r--include/litmus/domain.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/litmus/domain.h b/include/litmus/domain.h
index 75271c4acd33..cc93fea8a996 100644
--- a/include/litmus/domain.h
+++ b/include/litmus/domain.h
@@ -14,7 +14,7 @@ typedef void (*remove_t)(struct domain*, struct task_struct*);
14typedef struct task_struct* (*peek_ready_t)(struct domain*); 14typedef struct task_struct* (*peek_ready_t)(struct domain*);
15typedef struct task_struct* (*take_ready_t)(struct domain*); 15typedef struct task_struct* (*take_ready_t)(struct domain*);
16typedef int (*task_prio_t)(struct task_struct*, struct task_struct*); 16typedef int (*task_prio_t)(struct task_struct*, struct task_struct*);
17typedef void (*acquire_resources_t)(struct task_struct *t); 17typedef int (*acquire_resources_t)(struct task_struct *t);
18typedef void (*release_resources_t)(struct task_struct *t); 18typedef void (*release_resources_t)(struct task_struct *t);
19 19
20typedef struct domain { 20typedef struct domain {