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 /benchmarks/cache.c | |
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'.
Diffstat (limited to 'benchmarks/cache.c')
-rw-r--r-- | benchmarks/cache.c | 3 |
1 files changed, 1 insertions, 2 deletions
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 (); } |