Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
80251a061b39a5a29b4bb9c01a41ee9159f7c501
[simgrid.git] / src / amok / amok_base.c
1 /* $Id$ */
2
3 /* base - several addons to do specific stuff not in GRAS itself            */
4
5 /* Copyright (c) 2003, 2004 Martin Quinson. 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 #include "gras.h"
11 #include "amok/amok_modinter.h"
12
13 XBT_LOG_NEW_SUBCATEGORY(amok, XBT_LOG_ROOT_CAT, "All AMOK categories");
14
15 void amok_init(void)
16 {
17
18   /* Create all the modules */
19   amok_pm_modulecreate();
20 }
21
22 void amok_exit(void)
23 {
24   /* FIXME: No real module mechanism in GRAS so far, nothing to do. */
25 }