Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
remove gras from the main documentation
[simgrid.git] / src / amok / amok_base.c
1 /* base - several addons to do specific stuff not in GRAS itself            */
2
3 /* Copyright (c) 2006, 2009, 2010. The SimGrid Team.
4  * All rights reserved.                                                     */
5
6 /* This program is free software; you can redistribute it and/or modify it
7  * under the terms of the license (GNU LGPL) which comes with this package. */
8
9 #include "gras.h"
10 #include "amok/amok_modinter.h"
11
12 XBT_LOG_NEW_SUBCATEGORY(amok, XBT_LOG_ROOT_CAT, "All AMOK categories");
13
14 void amok_init(void)
15 {
16
17   /* Create all the modules */
18   amok_pm_modulecreate();
19 }
20
21 void amok_exit(void)
22 {
23   /* FIXME: No real module mechanism in GRAS so far, nothing to do. */
24 }