Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
remove dead code
[simgrid.git] / src / gras / Msg / msg_private.h
index 2cc7607..74917ae 100644 (file)
@@ -4,11 +4,10 @@
 
 /* module's private interface masked even to other parts of GRAS.           */
 
-/* Authors: Martin Quinson                                                  */
-/* Copyright (C) 2003, 2004 Martin Quinson.                                 */
+/* Copyright (c) 2003, 2004 Martin Quinson. All rights reserved.            */
 
 /* This program is free software; you can redistribute it and/or modify it
  under the terms of the license (GNU LGPL) which comes with this package. */
* under the terms of the license (GNU LGPL) which comes with this package. */
 
 #ifndef GRAS_MESSAGE_PRIVATE_H
 #define GRAS_MESSAGE_PRIVATE_H
@@ -45,11 +44,11 @@ typedef struct s_gras_msgtype {
   gras_datadesc_type_t ctn_type;
 } s_gras_msgtype_t;
 
-extern gras_set_t _gras_msgtype_set; /* of gras_msgtype_t */
+extern xbt_set_t _gras_msgtype_set; /* of gras_msgtype_t */
 void gras_msgtype_free(void *msgtype);
 
 
-gras_error_t gras_msg_recv(gras_socket_t    sock,
+xbt_error_t gras_msg_recv(gras_socket_t    sock,
                           gras_msgtype_t  *msgtype,
                           void           **payload,
                           int             *payload_size);
@@ -61,7 +60,7 @@ gras_error_t gras_msg_recv(gras_socket_t    sock,
  */
 struct s_gras_cblist {
   long int id;
-  gras_dynar_t cbs; /* of gras_msg_cb_t */
+  xbt_dynar_t cbs; /* of gras_msg_cb_t */
 };
 
 void gras_cblist_free(void *cbl);