Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
new function: gras_socket_meas_accept (mandatory on meas sockets, forbiden on others...
[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/sysdep.h"
16 #include "xbt/log.h"
17 #include "xbt/error.h"
18 #include "xbt/dynar.h"
19 #include "xbt/dict.h"
20 #include "gras/virtu.h"
21 #include "gras/process.h"
22
23 /* declare a new process specific data 
24    (used by gras_<module>_register to make sure that gras_process_init will create it) */
25
26 typedef void* (pvoid_f_void_t)(void); /* FIXME: find a better place for it */
27
28 void gras_procdata_add(const char *name, pvoid_f_void_t creator,void_f_pvoid_t destructor);
29 void *gras_libdata_get(const char *name);
30
31 #endif  /* GRAS_VIRTU_INTERFACE_H */