summaryrefslogtreecommitdiff
path: root/libhurd-mm
diff options
context:
space:
mode:
authorNeal H. Walfield <neal@gnu.org>2008-12-17 21:03:46 +0100
committerNeal H. Walfield <neal@gnu.org>2008-12-17 21:03:46 +0100
commitff6e2854d787288233cef4b756103d064906e8cf (patch)
treed3d8ae423cd234a489844b8060fe870b3683ff27 /libhurd-mm
parentdf03a0063711a96039f8799fdf3987e6be728644 (diff)
Replace remaining rm_ prefixes with vg_.
libhurd-mm/ 2008-12-17 Neal H. Walfield <neal@gnu.org> * exceptions.c (hurd_activation_fetch): Use vg_thread_activation_collect_send, not rm_thread_activation_collect_send. (hurd_activation_handler_init_early): Use vg_thread_exregs_send_marshal, not rm_thread_exregs_send_marshal. viengoos/ 2008-12-17 Neal H. Walfield <neal@gnu.org> * ager.c (update_stats): Use vg_activity_info_reply, not rm_activity_info_reply. * pager.c (pager_collect): Likewise. * object.c (folio_object_alloc): Use vg_object_reply_on_destruction_reply, not rm_object_reply_on_destruction_reply. * server.c (server_loop): Use vg_write_send_unmarshal, not rm_write_send_unmarshal. Use vg_write_reply, not rm_write_reply. Use VG_read_send_unmarshal, not rm_read_send_unmarshal. Use VG_read_reply, not rm_read_reply. Use VG_fault_send_unmarshal, not rm_fault_send_unmarshal. Use VG_fault_reply, not rm_fault_reply. Use VG_fault_reply, not rm_fault_reply. Use VG_folio_alloc_send_unmarshal, not rm_folio_alloc_send_unmarshal. Use VG_folio_alloc_reply, not rm_folio_alloc_reply. Use VG_folio_free_send_unmarshal, not rm_folio_free_send_unmarshal. Use VG_folio_free_reply, not rm_folio_free_reply. Use VG_folio_object_alloc_send_unmarshal, not rm_folio_object_alloc_send_unmarshal. Use VG_folio_object_alloc_reply, not rm_folio_object_alloc_reply. Use VG_folio_policy_send_unmarshal, not rm_folio_policy_send_unmarshal. Use VG_folio_policy_reply, not rm_folio_policy_reply. Use VG_cap_copy_send_unmarshal, not rm_cap_copy_send_unmarshal. Use VG_cap_copy_reply, not rm_cap_copy_reply. Use VG_cap_rubout_send_unmarshal, not rm_cap_rubout_send_unmarshal. Use VG_cap_rubout_reply, not rm_cap_rubout_reply. Use VG_cap_read_send_unmarshal, not rm_cap_read_send_unmarshal. Use VG_cap_read_reply, not rm_cap_read_reply. Use VG_object_discarded_clear_send_unmarshal, not rm_object_discarded_clear_send_unmarshal. Use VG_object_discarded_clear_reply, not rm_object_discarded_clear_reply. Use VG_object_discard_send_unmarshal, not rm_object_discard_send_unmarshal. Use VG_object_discard_reply, not rm_object_discard_reply. Use VG_object_status_send_unmarshal, not rm_object_status_send_unmarshal. Use VG_object_status_reply, not rm_object_status_reply. Use VG_object_name_send_unmarshal, not rm_object_name_send_unmarshal. Use VG_object_name_reply, not rm_object_name_reply. Use VG_thread_exregs_send_unmarshal, not rm_thread_exregs_send_unmarshal. Use VG_thread_exregs_reply, not rm_thread_exregs_reply. Use VG_thread_id_send_unmarshal, not rm_thread_id_send_unmarshal. Use VG_thread_id_reply, not rm_thread_id_reply. Use VG_object_reply_on_destruction_send_unmarshal, not rm_object_reply_on_destruction_send_unmarshal. Use VG_activity_policy_send_unmarshal, not rm_activity_policy_send_unmarshal. Use VG_activity_policy_reply, not rm_activity_policy_reply. Use VG_activity_info_send_unmarshal, not rm_activity_info_send_unmarshal. Use VG_activity_info_reply, not rm_activity_info_reply. Use VG_thread_activation_collect_send_unmarshal, not rm_thread_activation_collect_send_unmarshal. Use VG_thread_activation_collect_reply, not rm_thread_activation_collect_reply. Use VG_as_dump_send_unmarshal, not rm_as_dump_send_unmarshal. Use VG_as_dump_reply, not rm_as_dump_reply. Use VG_futex_reply, not rm_futex_reply. Use VG_futex_send_unmarshal, not rm_futex_send_unmarshal. Use VG_futex_reply, not rm_futex_reply. Use VG_futex_reply, not rm_futex_reply. Use VG_futex_reply, not rm_futex_reply. 2008-12-17 Neal H. Walfield <neal@gnu.org> * server.c: Don't include <hurd/exceptions.h>. * thread.c: Likewise. 2008-12-17 Neal H. Walfield <neal@gnu.org> * zalloc.c: Don't include <l4/math.h>. Include <viengoos/math.h>. (zfree): Use vg_msb instead of l4_msb. * ager.c (update_stats): Likewise.
Diffstat (limited to 'libhurd-mm')
-rw-r--r--libhurd-mm/ChangeLog8
-rw-r--r--libhurd-mm/exceptions.c4
2 files changed, 10 insertions, 2 deletions
diff --git a/libhurd-mm/ChangeLog b/libhurd-mm/ChangeLog
index a4b592e..f5d9cdf 100644
--- a/libhurd-mm/ChangeLog
+++ b/libhurd-mm/ChangeLog
@@ -1,5 +1,13 @@
2008-12-17 Neal H. Walfield <neal@gnu.org>
+ * exceptions.c (hurd_activation_fetch): Use
+ vg_thread_activation_collect_send, not
+ rm_thread_activation_collect_send.
+ (hurd_activation_handler_init_early): Use
+ vg_thread_exregs_send_marshal, not rm_thread_exregs_send_marshal.
+
+2008-12-17 Neal H. Walfield <neal@gnu.org>
+
* anonymous.h: Don't include <hurd/exceptions.h>.
* as.h: Likewise.
* exceptions.c: Likewise.
diff --git a/libhurd-mm/exceptions.c b/libhurd-mm/exceptions.c
index 13827f2..e7a923c 100644
--- a/libhurd-mm/exceptions.c
+++ b/libhurd-mm/exceptions.c
@@ -140,7 +140,7 @@ hurd_activation_fetch (void)
/* Any reply will come in the form of a pending activation being
delivered. This RPC does not generate a response. */
- error_t err = rm_thread_activation_collect_send (VG_ADDR_VOID, VG_ADDR_VOID,
+ error_t err = vg_thread_activation_collect_send (VG_ADDR_VOID, VG_ADDR_VOID,
VG_ADDR_VOID);
if (err)
panic ("Sending thread_activation_collect failed: %d", err);
@@ -683,7 +683,7 @@ hurd_activation_handler_init_early (void)
memset (&in, 0, sizeof (in));
struct vg_message *msg = (void *) &activation_handler_msg[0];
- rm_thread_exregs_send_marshal (msg, HURD_EXREGS_SET_UTCB, in,
+ vg_thread_exregs_send_marshal (msg, HURD_EXREGS_SET_UTCB, in,
VG_ADDR_VOID, VG_ADDR_VOID,
VG_PTR_TO_PAGE (utcb), VG_ADDR_VOID,
__hurd_startup_data->messengers[1]);