summaryrefslogtreecommitdiff
path: root/libhurd-mm/exceptions.c
diff options
context:
space:
mode:
authorNeal H. Walfield <neal@gnu.org>2008-12-18 10:48:24 +0100
committerNeal H. Walfield <neal@gnu.org>2008-12-18 10:48:24 +0100
commit61ce081e93aaf465a31beb41dd4094575cfbb19f (patch)
tree5570a5239f5adb8f5bd852f902fe3d4ca481d41c /libhurd-mm/exceptions.c
parent87bfe7ed7bbe4dd4350f420cc9649809bef6d5a4 (diff)
Add vg_ prefix to the (hopefully) remaining viengoos symbols.
2008-12-18 Neal H. Walfield <neal@gnu.org> * viengoos/activity.h (struct activity_memory_policy): Rename from this... (struct vg_activity_memory_policy): ... to this. Update users. (struct activity_policy): Rename from this... (struct vg_activity_policy): ... to this. Update users. (ACTIVITY_STATS_PERIODS): Rename from this... (VG_ACTIVITY_STATS_PERIODS): ... to this. Update users. (struct activity_stats): Rename from this... (struct vg_activity_stats): ... to this. Update users. (struct activity_info): Rename from this... (struct vg_activity_info): ... to this. Update users. * viengoos/addr.h (struct addr): Rename from this... (struct vg_addr): ... to this. Update users. * viengoos/cap.h (struct object_policy): Rename from this... (struct vg_object_policy): ... to this. Update users. (struct object_name): Rename from this... (struct vg_object_name): ... to this. Update users. (struct object): Rename from this... (struct vg_object): ... to this. Update users. * viengoos/folio.h (struct folio_policy): Rename from this... (struct vg_folio_policy): ... to this. Update users. (struct folio): Rename for this... (struct vg_folio): ... to this. Update users. * viengoos/thread.h (HURD_EXREGS_SET_UTCB): Rename from this... (VG_EXREGS_SET_UTCB): ... to this. Update users. (HURD_EXREGS_SET_EXCEPTION_MESSENGER): Rename from this... (VG_EXREGS_SET_EXCEPTION_MESSENGER): ... to this. Update users. (HURD_EXREGS_SET_ASPACE): Rename from this... (VG_EXREGS_SET_ASPACE): ... to this. Update users. (HURD_EXREGS_SET_ACTIVITY): Rename from this... (VG_EXREGS_SET_ACTIVITY): ... to this. Update users. (HURD_EXREGS_SET_SP): Rename from this... (VG_EXREGS_SET_SP): ... to this. Update users. (HURD_EXREGS_SET_IP): Rename from this... (VG_EXREGS_SET_IP): ... to this. Update users. (HURD_EXREGS_SET_SP_IP): Rename from this... (VG_EXREGS_SET_SP_IP): ... to this. Update users. (HURD_EXREGS_SET_EFLAGS): Rename from this... (VG_EXREGS_SET_EFLAGS): ... to this. Update users. (HURD_EXREGS_SET_USER_HANDLE): Rename from this... (VG_EXREGS_SET_USER_HANDLE): ... to this. Update users. (HURD_EXREGS_SET_REGS): Rename from this... (VG_EXREGS_SET_REGS): ... to this. Update users. (HURD_EXREGS_GET_REGS): Rename from this... (VG_EXREGS_GET_REGS): ... to this. Update users. (HURD_EXREGS_START): Rename from this... (VG_EXREGS_START): ... to this. Update users. (HURD_EXREGS_STOP): Rename from this... (VG_EXREGS_STOP): ... to this. Update users. (HURD_EXREGS_ABORT_SEND): Rename from this... (VG_EXREGS_ABORT_SEND): ... to this. Update users. (HURD_EXREGS_ABORT_RECEIVE): Rename from this... (VG_EXREGS_ABORT_RECEIVE): ... to this. Update users. (HURD_EXREGS_ABORT_IPC): Rename from this... (VG_EXREGS_ABORT_IPC): ... to this. Update users. (struct hurd_thread_exregs_in): Rename form this... (struct vg_thread_exregs_in): ... to this. Update users. (struct hurd_thread_exregs_out): Rename form this... (struct vg_thread_exregs_out): ... to this. Update users. (RPC_STUB_PREFIX): Define to vg_activation. Update users. (RPC_ID_PREFIX): Define to VG_ACTIVATION. Update users. (ACTIVATION_fault): Rename from this... (VG_ACTIVATION_fault): ... to this. Update users.
Diffstat (limited to 'libhurd-mm/exceptions.c')
-rw-r--r--libhurd-mm/exceptions.c28
1 files changed, 14 insertions, 14 deletions
diff --git a/libhurd-mm/exceptions.c b/libhurd-mm/exceptions.c
index e7a923c..39d972f 100644
--- a/libhurd-mm/exceptions.c
+++ b/libhurd-mm/exceptions.c
@@ -339,7 +339,7 @@ hurd_activation_handler_normal (struct activation_frame *activation_frame,
uintptr_t label = vg_message_word (mb->reply, 0);
switch (label)
{
- case ACTIVATION_fault:
+ case VG_ACTIVATION_fault:
{
vg_addr_t fault;
uintptr_t ip;
@@ -347,9 +347,9 @@ hurd_activation_handler_normal (struct activation_frame *activation_frame,
struct vg_activation_fault_info info;
error_t err;
- err = activation_fault_send_unmarshal (mb->reply,
- &fault, &sp, &ip, &info,
- NULL);
+ err = vg_activation_fault_send_unmarshal (mb->reply,
+ &fault, &sp, &ip, &info,
+ NULL);
if (err)
panic ("Failed to unmarshal exception: %d", err);
@@ -542,7 +542,7 @@ hurd_activation_handler_activated (struct hurd_utcb *utcb)
uintptr_t label = vg_message_word (mb->reply, 0);
switch (label)
{
- case ACTIVATION_fault:
+ case VG_ACTIVATION_fault:
{
vg_addr_t fault;
uintptr_t ip;
@@ -550,9 +550,9 @@ hurd_activation_handler_activated (struct hurd_utcb *utcb)
struct vg_activation_fault_info info;
error_t err;
- err = activation_fault_send_unmarshal (mb->reply,
- &fault, &sp, &ip, &info,
- NULL);
+ err = vg_activation_fault_send_unmarshal (mb->reply,
+ &fault, &sp, &ip, &info,
+ NULL);
if (err)
panic ("Failed to unmarshal exception: %d", err);
@@ -679,11 +679,11 @@ hurd_activation_handler_init_early (void)
utcb->vg.activation_handler_ip = (uintptr_t) &hurd_activation_handler_entry;
utcb->vg.activation_handler_end = (uintptr_t) &hurd_activation_handler_end;
- struct hurd_thread_exregs_in in;
+ struct vg_thread_exregs_in in;
memset (&in, 0, sizeof (in));
struct vg_message *msg = (void *) &activation_handler_msg[0];
- vg_thread_exregs_send_marshal (msg, HURD_EXREGS_SET_UTCB, in,
+ vg_thread_exregs_send_marshal (msg, VG_EXREGS_SET_UTCB, in,
VG_ADDR_VOID, VG_ADDR_VOID,
VG_PTR_TO_PAGE (utcb), VG_ADDR_VOID,
__hurd_startup_data->messengers[1]);
@@ -854,12 +854,12 @@ hurd_activation_state_alloc (vg_addr_t thread, struct hurd_utcb **utcbp)
*utcbp = utcb;
- struct hurd_thread_exregs_in in;
- struct hurd_thread_exregs_out out;
+ struct vg_thread_exregs_in in;
+ struct vg_thread_exregs_out out;
err = vg_thread_exregs (VG_ADDR_VOID, thread,
- HURD_EXREGS_SET_UTCB
- | HURD_EXREGS_SET_EXCEPTION_MESSENGER,
+ VG_EXREGS_SET_UTCB
+ | VG_EXREGS_SET_EXCEPTION_MESSENGER,
in, VG_ADDR_VOID, VG_ADDR_VOID,
VG_PTR_TO_PAGE (utcb), utcb->exception_buffer->receiver,
&out, NULL, NULL, NULL, NULL);