Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
921d707d7f464a58f810c080b8ae2f0b96234bea
[simgrid.git] / src / gras / DataDesc / datadesc_interface.h
1 /* $Id$ */
2
3 /* datadesc - describing the data to exchange                               */
4
5 /* module's public interface exported within GRAS, but not to end user.     */
6
7 /* Authors: Olivier Aumage, Martin Quinson                                  */
8 /* Copyright (C) 2003, 2004 the GRAS posse.                                 */
9
10 /* This program is free software; you can redistribute it and/or modify it
11    under the terms of the license (GNU LGPL) which comes with this package. */
12
13 #ifndef GRAS_DATADESC_INTERFACE_H
14 #define GRAS_DATADESC_INTERFACE_H
15
16 void gras_datadesc_init(void);
17 void gras_datadesc_exit(void);
18
19 gras_error_t gras_datadesc_by_id  (long int code,
20                                    gras_datadesc_type_t **type);
21 /* compare two data type description */
22 int
23 gras_datadesc_type_cmp(const gras_datadesc_type_t *d1,
24                        const gras_datadesc_type_t *d2);
25
26
27 /* Described data exchanges */
28 gras_error_t 
29 gras_datadesc_cpy(gras_datadesc_type_t *type, void *src, void **dst);
30 gras_error_t 
31 gras_datadesc_send(gras_socket_t *sock, gras_datadesc_type_t *type, void *src);
32 gras_error_t
33 gras_datadesc_recv(gras_socket_t *sock, gras_datadesc_type_t *type, 
34                    int r_arch, void **dst);
35
36
37 #endif /* GRAS_DATADESC_INTERFACE_H */