summaryrefslogtreecommitdiff
path: root/task
diff options
context:
space:
mode:
Diffstat (limited to 'task')
-rw-r--r--task/ChangeLog6
-rw-r--r--task/physmem-user.c2
-rw-r--r--task/physmem-user.h2
3 files changed, 8 insertions, 2 deletions
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 */