]> rtime.felk.cvut.cz Git - frescor/frsh.git/blob - frsh_api/frsh_transaction.c
Rename fres test binaries to have more unique names
[frescor/frsh.git] / frsh_api / frsh_transaction.c
1 /**************************************************************************/
2 /* Copyright (C) 2010 Czech Technical University in Prague                */
3 /*                                                                        */
4 /*  This file is part of FRSH (FRescor ScHeduler)                         */
5 /*                                                                        */
6 /* FRSH is free software; you can redistribute it and/or modify it        */
7 /* under terms of the GNU General Public License as published by the      */
8 /* Free Software Foundation; either version 2, or (at your option) any    */
9 /* later version.  FRSH is distributed in the hope that it will be        */
10 /* useful, but WITHOUT ANY WARRANTY; without even the implied warranty    */
11 /* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU    */
12 /* General Public License for more details. You should have received a    */
13 /* copy of the GNU General Public License along with FRSH; see file       */
14 /* COPYING. If not, write to the Free Software Foundation, 675 Mass Ave,  */
15 /* Cambridge, MA 02139, USA.                                              */
16 /*                                                                        */
17 /* As a special exception, including FRSH header files in a file,         */
18 /* instantiating FRSH generics or templates, or linking other files       */
19 /* with FRSH objects to produce an executable application, does not       */
20 /* by itself cause the resulting executable application to be covered     */
21 /* by the GNU General Public License. This exception does not             */
22 /* however invalidate any other reasons why the executable file might be  */
23 /* covered by the GNU Public License.                                     */
24 /**************************************************************************/
25
26 /**
27  * @file   frsh_transaction.c
28  * @author Michal Sojka <sojkam1@fel.cvut.cz>
29  * 
30  * @brief  Implementation of FRSH transaction negotiation.
31  */
32
33 #include <frsh.h>
34 #include <frsh_transaction.h>
35
36
37 int
38 frsh_transaction_negotiate(frsh_transaction_t *trans)
39 {
40         return FRSH_ERR_NOT_IMPLEMENTED;
41 }
42