summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorneal <neal>2004-12-02 15:22:24 +0000
committerneal <neal>2004-12-02 15:22:24 +0000
commit2c36bc4d9eb299b64dfeb4cb65019a35282a9e50 (patch)
tree475eca75411746c033a4b2cd290acd2ac5666670
parent599583b9e7518d1668e206e6ac32893d11ef2a60 (diff)
task/
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. deva/ 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.
-rw-r--r--deva/ChangeLog11
-rw-r--r--deva/physmem-user.c2
-rw-r--r--deva/physmem-user.h2
-rw-r--r--deva/task-user.c2
-rw-r--r--deva/task-user.h2
-rw-r--r--task/ChangeLog6
-rw-r--r--task/physmem-user.c2
-rw-r--r--task/physmem-user.h2
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 */