Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
a directory for all builds
[simgrid.git] / src / gras / Virtu / virtu_interface.h
1 /* $Id$ */
2
3 /* virtu[alization] - speciafic parts for each OS and for SG                */
4
5 /* module's public interface exported within GRAS, but not to end user.     */
6
7 /* Copyright (c) 2004 Martin Quinson. 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 #ifndef GRAS_VIRTU_INTERFACE_H
13 #define GRAS_VIRTU_INTERFACE_H
14
15 #include "xbt/function_types.h"
16 #include "xbt/sysdep.h"
17 #include "xbt/log.h"
18 #include "xbt/set.h"
19 #include "gras/virtu.h"
20 #include "gras/process.h"
21
22 /* shutdown the module mechanism (world-wide cleanups) */
23 XBT_PUBLIC void gras_moddata_exit(void);
24 /* shutdown this process wrt module mecanism (process-wide cleanups) */
25 XBT_PUBLIC void gras_moddata_leave(void);
26
27 /* This is the old interface (deprecated) */
28
29
30 /* declare a new process specific data 
31    (used by gras_<module>_register to make sure that gras_process_init will create it) */
32 XBT_PUBLIC int gras_procdata_add(const char *name, pvoid_f_void_t creator,void_f_pvoid_t destructor);
33
34 XBT_PUBLIC void *gras_libdata_by_name(const char *name);
35 XBT_PUBLIC void *gras_libdata_by_id(int id);
36
37 #endif  /* GRAS_VIRTU_INTERFACE_H */