Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
module init/exit functions are now in gras_private directly
[simgrid.git] / src / gras / DataDesc / datadesc_interface.h
index 970ee0c..2099502 100644 (file)
@@ -13,9 +13,6 @@
 #ifndef GRAS_DATADESC_INTERFACE_H
 #define GRAS_DATADESC_INTERFACE_H
 
-void gras_datadesc_init(void);
-void gras_datadesc_exit(void);
-
 gras_error_t gras_datadesc_by_id  (long int code,
                                   gras_datadesc_type_t **type);
 
@@ -28,7 +25,8 @@ int
 gras_datadesc_type_cmp(const gras_datadesc_type_t *d1,
                       const gras_datadesc_type_t *d2);
 
-
+/* Access function */
+int  gras_datadesc_size(gras_datadesc_type_t *type);
 /* Described data exchanges */
 gras_error_t 
 gras_datadesc_cpy(gras_datadesc_type_t *type, void *src, void **dst);
@@ -39,7 +37,7 @@ gras_datadesc_recv(gras_socket_t *sock, gras_datadesc_type_t *type,
                   int r_arch, void *dst);
 
 /* Indicate (lack of) interest in datatype */
-void gras_datadesc_ref(gras_datadesc_type_t *type);
+void gras_datadesc_addref(gras_datadesc_type_t *type);
 void gras_datadesc_unref(gras_datadesc_type_t *type);
    
 #endif /* GRAS_DATADESC_INTERFACE_H */