diff options
author | Neal H. Walfield <neal@gnu.org> | 2008-12-12 10:29:26 +0100 |
---|---|---|
committer | Neal H. Walfield <neal@gnu.org> | 2008-12-12 10:29:26 +0100 |
commit | aee030016e9b7b88ef2f7a2473a5c7769023dc20 (patch) | |
tree | 05cbcae3d0c97e459ad39e1c532f38cbf8ee6b35 | |
parent | 57487c9bf316f3ed262d17e4c10b284a263b8187 (diff) |
Use new types.
2008-12-12 Neal H. Walfield <neal@gnu.org>
* cache.c (object_fill): Replace use of `struct exception_info'
with `struct activation_fault_info'.
-rw-r--r-- | benchmarks/ChangeLog | 5 | ||||
-rw-r--r-- | benchmarks/cache.c | 3 |
2 files changed, 6 insertions, 2 deletions
diff --git a/benchmarks/ChangeLog b/benchmarks/ChangeLog index 118609d..c42d4d1 100644 --- a/benchmarks/ChangeLog +++ b/benchmarks/ChangeLog @@ -1,5 +1,10 @@ 2008-12-12 Neal H. Walfield <neal@gnu.org> + * cache.c (object_fill): Replace use of `struct exception_info' + with `struct activation_fault_info'. + +2008-12-12 Neal H. Walfield <neal@gnu.org> + Update according to new RPC interfaces. * activity-distribution.c (main): Update use of rm_activity_policy and rm_activity_info to be consistent with the new interface. diff --git a/benchmarks/cache.c b/benchmarks/cache.c index 33842af..11d0fc5 100644 --- a/benchmarks/cache.c +++ b/benchmarks/cache.c @@ -632,7 +632,7 @@ bool object_fill (struct anonymous_pager *anon, uintptr_t offset, uintptr_t count, void *pages[], - struct exception_info info) + struct activation_fault_info info) { profile_region (NULL); @@ -646,7 +646,6 @@ object_fill (struct anonymous_pager *anon, if (id <= 0 || id > OBJECTS) { s_printf ("id %d out of range!\n", id); - backtrace_print (); abort (); } |