]> rtime.felk.cvut.cz Git - frescor/frsh-include.git/blob - frsh_memory_management.h
Upgrading FRSH trunk to D-AC2v2. Phase I: Moving FRSH-FOSA to FOSA
[frescor/frsh-include.git] / frsh_memory_management.h
1 // -----------------------------------------------------------------------
2 //  Copyright (C) 2006 - 2007 FRESCOR consortium partners:
3 //
4 //    Universidad de Cantabria,              SPAIN
5 //    University of York,                    UK
6 //    Scuola Superiore Sant'Anna,            ITALY
7 //    Kaiserslautern University,             GERMANY
8 //    Univ. Politécnica  Valencia,           SPAIN
9 //    Czech Technical University in Prague,  CZECH REPUBLIC
10 //    ENEA                                   SWEDEN
11 //    Thales Communication S.A.              FRANCE
12 //    Visual Tools S.A.                      SPAIN
13 //    Rapita Systems Ltd                     UK
14 //    Evidence                               ITALY
15 //    
16 //    See http://www.frescor.org for a link to partners' websites
17 //
18 //           FRESCOR project (FP6/2005/IST/5-034026) is funded
19 //        in part by the European Union Sixth Framework Programme
20 //        The European Union is not liable of any use that may be
21 //        made of this code.
22 //
23 //
24 //  based on previous work (FSF) done in the FIRST project
25 //                       
26 //   Copyright (C) 2005  Mälardalen University, SWEDEN
27 //                       Scuola Superiore S.Anna, ITALY
28 //                       Universidad de Cantabria, SPAIN
29 //                       University of York, UK
30 //
31 //   FSF API web pages: http://marte.unican.es/fsf/docs
32 //                      http://shark.sssup.it/contrib/first/docs/
33 //
34 //  This file is part of FRSH API
35 //
36 //  FRSH API is free software; you can  redistribute it and/or  modify
37 //  it under the terms of  the GNU General Public License as published by
38 //  the Free Software Foundation;  either  version 2, or (at  your option)
39 //  any later version.
40 //
41 //  FRSH API  is distributed  in  the hope  that  it  will  be useful,  but
42 //  WITHOUT  ANY  WARRANTY;     without  even the   implied   warranty  of
43 //  MERCHANTABILITY  or  FITNESS FOR  A  PARTICULAR PURPOSE. See  the  GNU
44 //  General Public License for more details.
45 //
46 //  You should have  received a  copy of  the  GNU  General Public License
47 //  distributed  with  FRSH API;  see file COPYING.   If not,  write to the
48 //  Free Software  Foundation,  59 Temple Place  -  Suite 330,  Boston, MA
49 //  02111-1307, USA.
50 //
51 //  As a special exception, if you include this header file into source
52 //  files to be compiled, this header file does not by itself cause
53 //  the resulting executable to be covered by the GNU General Public
54 //  License.  This exception does not however invalidate any other
55 //  reasons why the executable file might be covered by the GNU General
56 //  Public License.
57 // -----------------------------------------------------------------------
58 //frsh_memory_management.h
59
60 //==============================================
61 //  ******** *******    ********  **      **
62 //  **///// /**////**  **//////  /**     /**
63 //  **      /**   /** /**        /**     /**
64 //  ******* /*******  /********* /**********
65 //  **////  /**///**  ////////** /**//////**
66 //  **      /**  //**        /** /**     /**
67 //  **      /**   //** ********  /**     /**
68 //  //       //     // ////////   //      // 
69 //
70 // FRSH(FRescor ScHeduler), pronounced "fresh"
71 //==============================================
72
73 #ifndef _FRSH_MEMORY_MANAGEMENT_H_
74 #define _FRSH_MEMORY_MANAGEMENT_H_
75
76 #include "frsh_core_types.h"
77
78
79 #define FRSH_MEMORY_MANAGEMENT_SUPPORTED 1
80
81 /**
82  * @file frsh_memory_management.h
83  **/
84
85 /**
86  * @defgroup memmanagement Memory Management
87  *
88  * This module provides the types and the functions to add memory
89  * management support to FRSH contracts.
90  *
91  * @{
92  *
93  **/
94
95 /**
96  * frsh_contract_set_memory_reqs()
97  *
98  * This function specifies in the contract the minimum and maximum
99  * memory needed by the application.
100  *
101  * @param[in] min_memory  Minimum needed memory in bytes.
102  * @param[in] max_memory  Maximum needed memory in bytes.
103  * @param  contract   Contract, in-out argument.
104  *
105  * @return 0 if no error \n
106  *     FRSH_ERR_BAD_ARGUMENT if min_memory > max_memory
107  * 
108  **/
109 int frsh_contract_set_memory_reqs(size_t min_memory,
110                                   size_t max_memory,
111                                   frsh_contract_t *contract);
112
113 /**
114  * frsh_contract_get_memory_reqs()
115  *
116  * This function gets the memory parameters from the contract.
117  *
118  * @param[in] contract Contract object
119  * @param[out] min_memory  Placeholder for the minimum required
120  *                         memory.
121  * @param[out] max_memory  Placeholder for the maximum required
122  *                         memory.
123  *
124  * @return 0 if no error \n
125  *      FRSH_ERR_BAD_ARGUMENT if one of the pointers is NULL
126  **/
127 int frsh_contract_get_memory_reqs(const frsh_contract_t *contract,
128                                   size_t *min_memory,
129                                   size_t *max_memory);
130
131
132 /**
133  * frsh_vres_get_memory_info()
134  *
135  * This function gives us the runtime info of memory usage and
136  * reservation.
137  *
138  * @param[in] vres_id Identifier of vres
139  * @param[out] mem_allocated Memory currently allocated to the vres
140  * @param[out] mem_budget Total pool of memory reserved for the vres
141  *             (until next renegotiation).
142  *
143  * @return 0 if no error \n
144  *      FRSH_ERR_BAD_ARGUMENT if one of the pointers is NULL
145  **/ 
146 int frsh_vres_get_memory_info(frsh_vres_id_t vres_id,
147                               size_t *mem_allocated,
148                               size_t *mem_budget);
149
150
151 /**
152  * frsh_vres_memalloc()
153  *
154  * This function reserves some memory from the memory to this virtual
155  * resource. 
156  *
157  * @param[in] vres_id Identifier of vres.
158  * @param[in] Number of bytes
159  * @param[out] Valid pointer for the allocation
160  *
161  * @return 0 if no error \n
162  *      FRSH_ERR_BAD_ARGUMENT if the area pointer is NULL
163  *      FRSH_ERR_OUT_OF_BUDGET if no budget is available
164  **/
165 int frsh_vres_malloc(frsh_vres_id_t vres_id,
166                      size_t num_bytes,
167                      void **area);
168
169 /**
170  * frsh_vres_memfree()
171  *
172  * This function returns the previously allocated memory area for this
173  * virtual_resource to the main memory.
174  *
175  * @param[in] vres_id Identifier of vres.
176  * @param[in] area    Memory area to return
177  *
178  * @return 0 if no error \n
179  *      FRSH_ERR_BAD_ARGUMENT if the area pointer is NULL
180  **/
181 int frsh_vres_memfree(frsh_vres_id_t vres_id,
182                       void *area);
183
184
185
186
187 /*@}*/
188
189 #endif      /* !FRSH_MEMORY_MANAGEMENT_H_ */