Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Fix ns3.
[simgrid.git] / teshsuite / gras / empty_main / empty_main.c
1 /* empty_main.c -- check what happens when the processes do nothing         */
2 /* Thanks to Loris Marshal for reporting a problem in that case             */
3
4 /* Copyright (c) 2008, 2009, 2010. The SimGrid Team.
5  * All rights reserved.                                                     */
6
7 /* This program is free software; you can redistribute it and/or modify it
8  * under the terms of the license (GNU LGPL) which comes with this package. */
9
10
11 #include "gras.h"
12
13 int function(int argc, char *argv[]);
14
15 int function(int argc, char *argv[])
16 {
17   gras_init(&argc, argv);
18   //  gras_os_sleep(3);
19   gras_exit();
20   return 0;
21 }