Logo AND Algorithmique Numérique Distribuée

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