summaryrefslogtreecommitdiff
path: root/benchmarks/activity-distribution.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 /benchmarks/activity-distribution.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 'benchmarks/activity-distribution.c')
-rw-r--r--benchmarks/activity-distribution.c22
1 files changed, 11 insertions, 11 deletions
diff --git a/benchmarks/activity-distribution.c b/benchmarks/activity-distribution.c
index 63726f5..1710090 100644
--- a/benchmarks/activity-distribution.c
+++ b/benchmarks/activity-distribution.c
@@ -43,10 +43,10 @@ main (int argc, char *argv[])
VG_OBJECT_POLICY_DEFAULT,
VG_ADDR_VOID).addr;
- struct activity_policy in;
+ struct vg_activity_policy in;
in.sibling_rel.priority = i == 0 ? 2 : 1;
in.sibling_rel.weight = i + 1;
- struct activity_policy out;
+ struct vg_activity_policy out;
err = vg_activity_policy (activity, activities[i],
VG_ACTIVITY_POLICY_SIBLING_REL_SET, in,
&out);
@@ -60,11 +60,11 @@ main (int argc, char *argv[])
int available;
{
- struct activity_info info;
+ struct vg_activity_info info;
- err = vg_activity_info (activity, activity, activity_info_stats, 1, &info);
+ err = vg_activity_info (activity, activity, vg_activity_info_stats, 1, &info);
assert (err == 0);
- assert (info.event == activity_info_stats);
+ assert (info.event == vg_activity_info_stats);
assert (info.stats.count >= 1);
available = info.stats.stats[0].available * PAGESIZE;
@@ -150,18 +150,18 @@ main (int argc, char *argv[])
}
#define ITERATIONS 200
- struct activity_stats stats[ITERATIONS][1 + THREADS];
+ struct vg_activity_stats stats[ITERATIONS][1 + THREADS];
uintptr_t next_period = 0;
for (i = 0; i < ITERATIONS; i ++)
{
printf ("Iteration: %d\n", i);
- struct activity_info info;
+ struct vg_activity_info info;
- vg_activity_info (activity, activity, activity_info_stats,
+ vg_activity_info (activity, activity, vg_activity_info_stats,
next_period, &info);
- assert (info.event == activity_info_stats);
+ assert (info.event == vg_activity_info_stats);
assert (info.stats.count > 0);
if (i != 0)
assertx (info.stats.stats[0].period != stats[i - 1][0].period,
@@ -173,9 +173,9 @@ main (int argc, char *argv[])
int j;
for (j = 0; j < THREADS; j ++)
{
- vg_activity_info (activity, activity, activity_info_stats,
+ vg_activity_info (activity, activity, vg_activity_info_stats,
next_period, &info);
- assert (info.event == activity_info_stats);
+ assert (info.event == vg_activity_info_stats);
assert (info.stats.count > 0);
stats[i][1 + j] = info.stats.stats[0];
}