diff options
-rw-r--r-- | deva/ChangeLog | 11 | ||||
-rw-r--r-- | deva/physmem-user.c | 2 | ||||
-rw-r--r-- | deva/physmem-user.h | 2 | ||||
-rw-r--r-- | deva/task-user.c | 2 | ||||
-rw-r--r-- | deva/task-user.h | 2 | ||||
-rw-r--r-- | task/ChangeLog | 6 | ||||
-rw-r--r-- | task/physmem-user.c | 2 | ||||
-rw-r--r-- | task/physmem-user.h | 2 |
8 files changed, 22 insertions, 7 deletions
diff --git a/deva/ChangeLog b/deva/ChangeLog index 429b94f..be6ca3d 100644 --- a/deva/ChangeLog +++ b/deva/ChangeLog @@ -1,8 +1,17 @@ +2004-12-01 Neal H. Walfield <neal@gnu.org> + + * physmem-user.h (physmem_map): Change CONT from a hurd_cap_id_t + to a hurd_cap_handle_t. + * physmem-user.c (physmem_map): Likewise. + * task-user.h (task_thread_alloc): Change TASK from a + hurd_cap_id_t to a hurd_cap_handle_t. + * task-user.c (task_thread_alloc): Likewise. + 2004-11-22 Neal H. Walfield <neal@gnu.org> * deva.c (bootstrap_final): New function. (main): Call bootstrap_final as per the start up protocol to tell - wortel that devais up and running and that it should now start the + wortel that deva is up and running and that it should now start the root fs. 2004-11-17 Neal H. Walfield <neal@gnu.org> diff --git a/deva/physmem-user.c b/deva/physmem-user.c index 0d4c619..778c650 100644 --- a/deva/physmem-user.c +++ b/deva/physmem-user.c @@ -31,7 +31,7 @@ /* Map the memory at offset OFFSET with size SIZE at address VADDR from the container CONT in the physical memory server PHYSMEM. */ error_t -physmem_map (l4_thread_id_t physmem, hurd_cap_id_t cont, +physmem_map (l4_thread_id_t physmem, hurd_cap_handle_t cont, l4_word_t offset, size_t size, void *vaddr) { l4_msg_t msg; diff --git a/deva/physmem-user.h b/deva/physmem-user.h index 2051cb5..ecb2029 100644 --- a/deva/physmem-user.h +++ b/deva/physmem-user.h @@ -31,7 +31,7 @@ /* Map the memory at offset OFFSET with size SIZE at address VADDR from the container CONT in the physical memory server PHYSMEM. */ -error_t physmem_map (l4_thread_id_t physmem, hurd_cap_id_t cont, +error_t physmem_map (l4_thread_id_t physmem, hurd_cap_handle_t cont, l4_word_t offset, size_t size, void *vaddr); #endif /* HURD_PHYSMEM_USER_H */ diff --git a/deva/task-user.c b/deva/task-user.c index 3541893..822dbd6 100644 --- a/deva/task-user.c +++ b/deva/task-user.c @@ -35,7 +35,7 @@ /* Allocate a new thread for the task TASK, and return its thread ID in THREAD_ID. */ error_t -task_thread_alloc (l4_thread_id_t task_server, hurd_cap_id_t task, +task_thread_alloc (l4_thread_id_t task_server, hurd_cap_handle_t task, void *utcb, l4_thread_id_t *thread_id) { l4_msg_t msg; diff --git a/deva/task-user.h b/deva/task-user.h index 8cc5957..918147f 100644 --- a/deva/task-user.h +++ b/deva/task-user.h @@ -31,7 +31,7 @@ /* Allocate a new thread for the task TASK, and return its thread ID in THREAD_ID. */ -error_t task_thread_alloc (l4_thread_id_t task_server, hurd_cap_id_t task, +error_t task_thread_alloc (l4_thread_id_t task_server, hurd_cap_handle_t task, void *utcb, l4_thread_id_t *thread_id); #endif /* HURD_TASK_USER_H */ diff --git a/task/ChangeLog b/task/ChangeLog index c8c27bf..b24feaa 100644 --- a/task/ChangeLog +++ b/task/ChangeLog @@ -1,3 +1,9 @@ +2004-12-01 Neal H. Walfield <neal@gnu.org> + + * physmem-user.h (physmem_map): Change CONT from a hurd_cap_id_t + to a hurd_cap_handle_t. + * physmem-user.c (physmem_map): Likewise. + 2004-11-17 Neal H. Walfield <neal@gnu.org> * Makefile.am (bootdir): New variable. diff --git a/task/physmem-user.c b/task/physmem-user.c index 0d4c619..778c650 100644 --- a/task/physmem-user.c +++ b/task/physmem-user.c @@ -31,7 +31,7 @@ /* Map the memory at offset OFFSET with size SIZE at address VADDR from the container CONT in the physical memory server PHYSMEM. */ error_t -physmem_map (l4_thread_id_t physmem, hurd_cap_id_t cont, +physmem_map (l4_thread_id_t physmem, hurd_cap_handle_t cont, l4_word_t offset, size_t size, void *vaddr) { l4_msg_t msg; diff --git a/task/physmem-user.h b/task/physmem-user.h index 2051cb5..ecb2029 100644 --- a/task/physmem-user.h +++ b/task/physmem-user.h @@ -31,7 +31,7 @@ /* Map the memory at offset OFFSET with size SIZE at address VADDR from the container CONT in the physical memory server PHYSMEM. */ -error_t physmem_map (l4_thread_id_t physmem, hurd_cap_id_t cont, +error_t physmem_map (l4_thread_id_t physmem, hurd_cap_handle_t cont, l4_word_t offset, size_t size, void *vaddr); #endif /* HURD_PHYSMEM_USER_H */ |