X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/4a201b7ceece70d2bc461ac48c8b746a36d07243..20801428bec07ed58c348d25ad39878f2c208389:/testsuite/xbt/heap_bench.c diff --git a/testsuite/xbt/heap_bench.c b/testsuite/xbt/heap_bench.c index c9f3bfb175..417f987e9e 100644 --- a/testsuite/xbt/heap_bench.c +++ b/testsuite/xbt/heap_bench.c @@ -1,6 +1,7 @@ /* A few tests for the xbt_heap module */ -/* Copyright (c) 2004 Arnaud Legrand. All rights reserved. */ +/* Copyright (c) 2004, 2005, 2006, 2007, 2008, 2009, 2010. The SimGrid Team. + * All rights reserved. */ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ @@ -28,7 +29,7 @@ int compare_double(const void *a, const void *b); void test_heap_validity(int size); void test_heap_mean_operation(int size); -void test_reset_heap(xbt_heap_t heap, int size); +void test_reset_heap(xbt_heap_t * heap, int size); int compare_double(const void *a, const void *b) @@ -90,7 +91,7 @@ void test_heap_mean_operation(int size) for (j = 0; j < MAX_TEST; j++) { if (!(j % size) && j) - test_reset_heap(heap, size); + test_reset_heap(&heap, size); val = xbt_heap_maxkey(heap); xbt_heap_pop(heap); @@ -103,14 +104,14 @@ void test_heap_mean_operation(int size) xbt_heap_free(heap); } -void test_reset_heap(xbt_heap_t heap, int size) +void test_reset_heap(xbt_heap_t * heap, int size) { int i; - xbt_heap_free(heap); - heap = xbt_heap_new(size, NULL); + xbt_heap_free(*heap); + *heap = xbt_heap_new(size, NULL); for (i = 0; i < size; i++) { - xbt_heap_push(heap, NULL, (10.0 * rand() / (RAND_MAX + 1.0))); + xbt_heap_push(*heap, NULL, (10.0 * rand() / (RAND_MAX + 1.0))); } }