Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
use a user level mallocator on the task content
[simgrid.git] / examples / gras / mmrpc / mmrpc_common.c
1 /* GridRPC - Fake Grid RPC thingy doing matrix multiplications (as expected)*/
2
3 /* Copyright (c) 2006, 2007, 2009, 2010. The SimGrid Team.
4  * All rights reserved.                                                     */
5
6 /* This program is free software; you can redistribute it and/or modify it
7  * under the terms of the license (GNU LGPL) which comes with this package. */
8
9 #include "mmrpc.h"
10
11 XBT_LOG_NEW_DEFAULT_CATEGORY(MatMult, "Messages specific to this example");
12
13 /* register messages which may be sent and their payload
14    (common to client and server) */
15 void mmrpc_register_messages(void)
16 {
17   gras_datadesc_type_t matrix_type, request_type;
18
19   matrix_type =
20       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 }