Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
07fcc40230b8c5eb2417adfe8423e9b3a871b8af
[simgrid.git] / src / 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/base.h"
12
13 XBT_LOG_NEW_SUBCATEGORY(amok,XBT_LOG_ROOT_CAT,"All AMOK categories");
14
15 void amok_base_init(void) {
16   gras_datadesc_type_t host_desc;
17
18   /* Connect our log channels: that must be done manually under windows */
19   XBT_LOG_CONNECT(amok_bw, amok);
20     XBT_LOG_CONNECT(amok_bw_sat, amok_bw);
21   XBT_LOG_CONNECT(amok_pm, amok);
22    
23   /* Build the datatype descriptions */
24   host_desc = gras_datadesc_struct("s_xbt_host_t");
25   gras_datadesc_struct_append(host_desc,"name",gras_datadesc_by_name("string"));
26   gras_datadesc_struct_append(host_desc,"exp_size",gras_datadesc_by_name("int"));
27   gras_datadesc_struct_close(host_desc);
28   host_desc = gras_datadesc_ref("xbt_host_t",host_desc);
29 }
30
31 void amok_base_exit(void) {
32    /* FIXME: No real module mechanism in GRAS so far, nothing to do. */
33 }
34