Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Revalidating some GRAS tests for 64bit architectures
[simgrid.git] / examples / gras / mmrpc / mmrpc.h
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 #ifndef MMRPC_H
11 #define MMRPC_H
12
13 #include "gras.h"
14
15 #define MATSIZE 128
16
17 /* register messages which may be sent and their payload
18    (common to client and server) */
19 void mmrpc_register_messages(void);
20
21 /* Function prototypes */
22 int server(int argc, char *argv[]);
23 int client(int argc, char *argv[]);
24
25 #endif /* MMRPC_H */