X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/dff9e15c44ab6340d27215957c56fa72fad246a2..6a5f04303fede6c66ee161297d17a0979a8e691e:/teshsuite/msg/get_sender.c diff --git a/teshsuite/msg/get_sender.c b/teshsuite/msg/get_sender.c index b8655746f4..a69d93fc05 100644 --- a/teshsuite/msg/get_sender.c +++ b/teshsuite/msg/get_sender.c @@ -1,3 +1,9 @@ +/* Copyright (c) 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. */ + #include #include "msg/msg.h" #include @@ -8,7 +14,8 @@ XBT_LOG_NEW_DEFAULT_CATEGORY(test, "Messages specific to this example"); static int send(int argc, char *argv[]) { INFO0("Sending"); - MSG_task_put(MSG_task_create("Blah", 0.0, 0.0, NULL), MSG_host_self(), 0); + MSG_task_put(MSG_task_create("Blah", 0.0, 0.0, NULL), MSG_host_self(), + 0); MSG_process_sleep(1.); /* FIXME: if the sender exits before the receiver calls get_sender(), bad thing happens */ INFO0("Exiting"); return 0;