Triton Repository branch, master, updated. 859df51fa6f05a24435cb1d309799ca83f0f1b97
This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "Triton Repository". The branch, master has been updated via 859df51fa6f05a24435cb1d309799ca83f0f1b97 (commit) from bff3678f9360c7f7732d85f835e83607d7ab7644 (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit 859df51fa6f05a24435cb1d309799ca83f0f1b97 Author: slang <[email protected]> Date: Thu Feb 24 13:34:20 2011 -0600 fix segfault caused by hint changes ----------------------------------------------------------------------- Summary of changes: .../versioned-osd/prototype/tests/vosd-autotune.ae | 5 ++++- 1 files changed, 4 insertions(+), 1 deletions(-) Diff of changes: diff --git a/code/src/versioned-osd/prototype/tests/vosd-autotune.ae b/code/src/versioned-osd/prototype/tests/vosd-autotune.ae index 2a257a5..57a1bc5 100644 --- a/code/src/versioned-osd/prototype/tests/vosd-autotune.ae +++ b/code/src/versioned-osd/prototype/tests/vosd-autotune.ae @@ -42,6 +42,7 @@ static void usage(void) int main(int argc, char *argv[]) { ae_context_t ctx; + ae_hints_t hints; ae_op_id_t op_id; int pc = 0; int ret; @@ -65,13 +66,15 @@ int main(int argc, char *argv[]) ae_context_create(&ctx, "bdb", "file", "sched", "timer"); + ae_hints_init(&hints); done = 0; - ae_post_blocking(do_vosd_test, done_callback, NULL, NULL, ctx, &op_id); + ae_post_blocking(do_vosd_test, done_callback, NULL, &hints, ctx, &op_id); while(done == 0) { pc++; ae_poll(ctx, 10000); } + ae_hints_destroy(&hints); triton_finalize(); ae_context_destroy(ctx); hooks/post-receive -- Triton Repository
participants (1)
-
noreply@mcs.anl.gov