X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/6760cb07d6b57be16928d95339d71e57c4e24f36..059ffba3002aa86e17392c7f2c884095ab64591b:/examples/gras/mmrpc/mmrpc_common.c diff --git a/examples/gras/mmrpc/mmrpc_common.c b/examples/gras/mmrpc/mmrpc_common.c index 5b0beaf586..62da6015f2 100644 --- a/examples/gras/mmrpc/mmrpc_common.c +++ b/examples/gras/mmrpc/mmrpc_common.c @@ -14,11 +14,12 @@ XBT_LOG_NEW_DEFAULT_CATEGORY(MatMult, "Messages specific to this example"); (common to client and server) */ void mmrpc_register_messages(void) { - gras_datadesc_type_t matrix_type, request_type; + xbt_datadesc_type_t matrix_type, request_type; - matrix_type = gras_datadesc_matrix(gras_datadesc_by_name("double"), NULL); + matrix_type = + xbt_datadesc_matrix(xbt_datadesc_by_name("double"), NULL); request_type = - gras_datadesc_array_fixed("s_matrix_t(double)[2]", matrix_type, 2); + xbt_datadesc_array_fixed("s_matrix_t(double)[2]", matrix_type, 2); gras_msgtype_declare("answer", matrix_type); gras_msgtype_declare("request", request_type);