summaryrefslogtreecommitdiff
path: root/benchmarks
diff options
context:
space:
mode:
Diffstat (limited to 'benchmarks')
-rw-r--r--benchmarks/ChangeLog6
-rw-r--r--benchmarks/GCbench.c2
-rw-r--r--benchmarks/activity-distribution.c2
3 files changed, 8 insertions, 2 deletions
diff --git a/benchmarks/ChangeLog b/benchmarks/ChangeLog
index 98f58f4..9c120db 100644
--- a/benchmarks/ChangeLog
+++ b/benchmarks/ChangeLog
@@ -1,3 +1,9 @@
+2008-11-04 Neal H. Walfield <neal@gnu.org>
+
+ * activity-distribution.c (main): Use OBJECT_PRIORITY_DEFAULT, not
+ OBJECT_PRIORITY_LRU.
+ * GCbench.c (helper): Likewise.
+
2008-06-27 Neal H. Walfield <neal@gnu.org>
* shared-memory-distribution.c (main): Update to use activity_info
diff --git a/benchmarks/GCbench.c b/benchmarks/GCbench.c
index ab05665..1b786be 100644
--- a/benchmarks/GCbench.c
+++ b/benchmarks/GCbench.c
@@ -176,7 +176,7 @@ helper (void *arg)
{
pagers[c]
= anonymous_pager_alloc (hog_activity, NULL, s, MAP_ACCESS_ALL,
- OBJECT_POLICY (false, OBJECT_PRIORITY_LRU), 0,
+ OBJECT_POLICY (false, OBJECT_PRIORITY_DEFAULT), 0,
NULL, &buffers[c]);
assert (pagers[c]);
assert (buffers[c]);
diff --git a/benchmarks/activity-distribution.c b/benchmarks/activity-distribution.c
index cffc288..966d8af 100644
--- a/benchmarks/activity-distribution.c
+++ b/benchmarks/activity-distribution.c
@@ -113,7 +113,7 @@ main (int argc, char *argv[])
pagers[i]
= anonymous_pager_alloc (ADDR_VOID, NULL, SIZE, MAP_ACCESS_ALL,
OBJECT_POLICY (true,
- OBJECT_PRIORITY_LRU),
+ OBJECT_PRIORITY_DEFAULT),
0, my_fill, &buffers[i]);
assert (pagers[i]);
assert (buffers[i]);