From 379f7ab2b1e062e9d5be2ed6aeb4854f8ebc9167 Mon Sep 17 00:00:00 2001 From: Bahadir Balban Date: Tue, 19 May 2009 16:20:05 +0300 Subject: [PATCH] Added the omitted utcb.h to mm0 --- tasks/mm0/include/utcb.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 tasks/mm0/include/utcb.h diff --git a/tasks/mm0/include/utcb.h b/tasks/mm0/include/utcb.h new file mode 100644 index 0000000..02b7d72 --- /dev/null +++ b/tasks/mm0/include/utcb.h @@ -0,0 +1,14 @@ +#ifndef __MM0_UTCB_H__ +#define __MM0_UTCB_H__ + +int utcb_pool_init(); + +void *utcb_new_address(int npages); +int utcb_delete_address(void *shm_addr, int npages); +unsigned long utcb_slot(struct utcb_desc *desc); +unsigned long task_new_utcb_desc(struct tcb *task); +int task_setup_utcb(struct tcb *task); +int task_destroy_utcb(struct tcb *task); + + +#endif /* __MM0_UTCB_H__ */