X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/dff9e15c44ab6340d27215957c56fa72fad246a2..cedff8d970304fe22e5ab6d359c47160ec82fdb3:/examples/msg/priority/priority.c diff --git a/examples/msg/priority/priority.c b/examples/msg/priority/priority.c index 8eaf7313e1..30ec3456a7 100644 --- a/examples/msg/priority/priority.c +++ b/examples/msg/priority/priority.c @@ -1,6 +1,5 @@ -/* $Id$ */ - -/* Copyright (c) 2002,2003,2004 Arnaud Legrand. All rights reserved. */ +/* Copyright (c) 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. */ @@ -33,7 +32,7 @@ static int test(int argc, char *argv[]) MSG_task_set_priority(task, priority); MSG_task_execute(task); - + MSG_task_destroy(task); INFO0("Goodbye now!"); return 0; @@ -46,7 +45,6 @@ static MSG_error_t test_all(const char *platform_file, { /* Simulation setting */ MSG_set_channel_number(1); - MSG_paje_output("msg_test.trace"); MSG_create_environment(platform_file); } { /* Application deployment */ @@ -64,7 +62,8 @@ int main(int argc, char *argv[]) MSG_error_t res = MSG_OK; #ifdef _MSC_VER - unsigned int prev_exponent_format = _set_output_format(_TWO_DIGIT_EXPONENT); + unsigned int prev_exponent_format = + _set_output_format(_TWO_DIGIT_EXPONENT); #endif