Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Second commit for cmake in an other directory.
[simgrid.git] / teshsuite / gras / empty_main / empty_main.c
1 /* $Id: gras.c 3859 2007-07-18 12:29:51Z donassbr $ */
2
3 /* empty_main.c -- check what happens when the processes do nothing         */
4 /* Thanks to Loris Marshal for reporting a problem in that case             */
5
6 /* Copyright (c) 2007 Martin Quinson.                                       */
7 /* All rights reserved.                                                     */
8
9 /* This program is free software; you can redistribute it and/or modify it
10  * under the terms of the license (GNU LGPL) which comes with this package. */
11
12
13 #include "gras.h"
14
15 int function(int argc, char *argv[]);
16
17 int function(int argc, char *argv[])
18 {
19   gras_init(&argc, argv);
20   //  gras_os_sleep(3);
21   gras_exit();
22   return 0;
23 }