Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Reindent everything (possibly breaking all branches, but for the last time)
[simgrid.git] / examples / gras / mmrpc / mmrpc_common.c
1 /* $Id$ */
2
3 /* GridRPC - Fake Grid RPC thingy doing matrix multiplications (as expected)*/
4
5 /* Copyright (c) 2005 Martin Quinson. All rights reserved.                  */
6
7 /* This program is free software; you can redistribute it and/or modify it
8  * under the terms of the license (GNU LGPL) which comes with this package. */
9
10 #include "mmrpc.h"
11
12 XBT_LOG_NEW_DEFAULT_CATEGORY(MatMult, "Messages specific to this example");
13
14 /* register messages which may be sent and their payload
15    (common to client and server) */
16 void mmrpc_register_messages(void)
17 {
18   gras_datadesc_type_t matrix_type, request_type;
19
20   matrix_type = gras_datadesc_matrix(gras_datadesc_by_name("double"), NULL);
21   request_type =
22     gras_datadesc_array_fixed("s_matrix_t(double)[2]", matrix_type, 2);
23
24   gras_msgtype_declare("answer", matrix_type);
25   gras_msgtype_declare("request", request_type);
26 }