]> rtime.felk.cvut.cz Git - frescor/fosa.git/blob - src_aquosa/fosa_mutexes_and_condvars.c
Removing consistency checks in fosa_adsactions_add_activate and
[frescor/fosa.git] / src_aquosa / fosa_mutexes_and_condvars.c
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. Politecnica  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 //  This file is part of the FRSH implementation
24 //
25 //  FRSH is free software; you can  redistribute it and/or  modify
26 //  it under the terms of  the GNU General Public License as published by
27 //  the Free Software Foundation;  either  version 2, or (at  your option)
28 //  any later version.
29 //
30 //  FRSH  is distributed  in  the hope  that  it  will  be useful,  but
31 //  WITHOUT  ANY  WARRANTY;     without  even the   implied   warranty  of
32 //  MERCHANTABILITY  or  FITNESS FOR  A  PARTICULAR PURPOSE. See  the  GNU
33 //  General Public License for more details.
34 //
35 //  You should have  received a  copy of  the  GNU  General Public License
36 //  distributed  with  FRSH;  see file COPYING.   If not,  write to the
37 //  Free Software  Foundation,  59 Temple Place  -  Suite 330,  Boston, MA
38 //  02111-1307, USA.
39 //
40 //  As a special exception, if you include this header file into source
41 //  files to be compiled, this header file does not by itself cause
42 //  the resulting executable to be covered by the GNU General Public
43 //  License.  This exception does not however invalidate any other
44 //  reasons why the executable file might be covered by the GNU General
45 //  Public License.
46 // -----------------------------------------------------------------------
47 //fosa_mutexes_and_condvars.h
48 //==============================================
49 //  ********  ******    ********  **********
50 //  **///// /**    **  **//////  /**     /**
51 //  **      /**    ** /**        /**     /**
52 //  ******* /**    ** /********* /**********
53 //  **////  /**    ** ////////** /**//////**
54 //  **      /**    **        /** /**     /**
55 //  **      /**    **  ********  /**     /**
56 //  //       /******/  ////////   //      // 
57 //
58 // FOSA(Frescor Operating System Adaptation layer)
59 //================================================
60
61 #include "fosa_time.h"
62 #include "fosa_mutexes_and_condvars.h"
63
64 #ifdef OMK_FOR_USER             /* If compiled by OMK, use the config */
65 #include "fosa_config.h"
66 #endif
67
68 /*******************************************************
69  * Mutexes with priority/bandwidth inheritance
70  ******************************************************/
71
72 /**
73  * fosa_mutex_init()
74  *
75  * Initialize a frsh mutex
76  *
77  * The mutex pointed to by mutex is initialized as a mutex using
78  * the priority ceiling protocol. A priority ceiling of prioceiling
79  * is assigned to this mutex.
80  *
81  * Returns 0 if successful; otherwise it returns an error code:
82  *    EINVAL: the value of prioceiling is invalid
83  *    EAGAIN: the system lacked the necessary resources to create the mutex
84  *    ENOMEM: Insufficient memory exists to initialize the mutex
85  *    EBUSY:  The system has detected an attempt to reinitialize the mutex
86  **/
87 int fosa_mutex_init(fosa_mutex_t *mutex, int prioceiling)
88 {
89         int error;
90         pthread_mutexattr_t attr;
91
92         if ((error = pthread_mutexattr_init(&attr)) != 0)
93                 return error;
94
95 #ifndef CONFIG_NO_PRIO_INHERIT  /* Valgrind doesn't support this attribute */
96         if ((error = pthread_mutexattr_setprotocol(&attr, PTHREAD_PRIO_INHERIT)) != 0)
97                 return error;
98 #endif
99         return pthread_mutex_init(mutex, &attr);
100 }
101
102 /**
103  * fosa_mutex_destroy()
104  *
105  * Destroy a frsh mutex
106  *
107  * The mutex pointed to by mutex is destroyed
108  *
109  * Returns 0 if successful; otherwise it returns an error code:
110  *    EINVAL: the value of mutex is invalid
111  *    EBUSY:  The mutex is in use (is locked)
112  **/
113 int fosa_mutex_destroy(fosa_mutex_t *mutex)
114 {
115         return pthread_mutex_destroy(mutex);
116 }
117
118 /**
119  * fosa_mutex_set_prioceiling()
120  *
121  * Dynamically set the priority ceiling of a mutex
122  *
123  * Since in this implementation we use BandWidth Inheritance defining the
124  * ceiling of a mutex is meaningless, and so the function always returns
125  * EINVAL
126  **/
127 int fosa_mutex_set_prioceiling(fosa_mutex_t *mutex,
128                                int new_ceiling,
129                                int *old_ceiling)
130 {
131         return -EINVAL;
132 }
133
134 /**
135  * fosa_mutex_get_prioceiling()
136  *
137  * Dynamically get the priority ceiling of a mutex
138  *
139  * Since in this implementation we use BandWidth Inheritance defining the
140  * ceiling of a mutex is meaningless, and so the function always returns
141  * EINVAL
142  **/
143 int fosa_mutex_get_prioceiling(const fosa_mutex_t *mutex, int *ceiling)
144 {
145         return -EINVAL;
146 }
147
148 /**
149  * fosa_mutex_lock()
150  *
151  * Lock a mutex
152  *
153  * This function locks the mutex specified by mutex. If it is already
154  * locked, the calling thread blocks until the mutex becomes
155  * available. The operation returns with the mutex in the locked
156  * state, with the calling thread as its owner.
157  *
158  * Returns 0 if successful; otherwise it returns an error code:
159  *    EINVAL: the value of mutex is invalid, or the priority of the
160  *            calling thread is higher than the priority ceiling of the mutex
161  *    EDEADLK: the current thread already owns this mutex
162  **/
163 int fosa_mutex_lock(fosa_mutex_t *mutex)
164 {
165         return pthread_mutex_lock(mutex);
166 }
167
168 /**
169  * fosa_mutex_trylock()
170  *
171  * Try locking a mutex
172  *
173  * This function is identical to fosa_mutex_lock() except that if the
174  * mutex is already locked the call returns immediately with an error
175  * indication.
176  *
177  * Returns 0 if successful; otherwise it returns an error code:
178  *    EINVAL: the value of mutex is invalid, or the priority of the
179  *            calling thread is higher than the priority ceiling of the mutex
180  *    EBUSY: the mutex was already locked
181  **/
182 int fosa_mutex_trylock(fosa_mutex_t *mutex)
183 {
184         return pthread_mutex_trylock(mutex);
185 }
186
187 /**
188  * fosa_mutex_unlock()
189  *
190  * Unlock a mutex
191  *
192  * This function must be called by the owner of the mutex referenced
193  * by mutex, to unlock it. If there are threads blocked on the mutex
194  * the mutex becomes available and the highest priority thread is
195  * awakened to acquire the mutex.
196  *
197  * Returns 0 if successful; otherwise it returns an error code:
198  *     EINVAL: the value of mutex is invalid
199  *     EPERM: the calling thread is not the owner of the mutex
200  **/
201 int fosa_mutex_unlock(fosa_mutex_t *mutex)
202 {
203         return pthread_mutex_unlock(mutex);
204 }
205
206 /**********************
207  * Condition variables
208  *********************/
209
210 /**
211  * fosa_cond_init()
212  *
213  * Initiatize a condition variable
214  *
215  * The condition variable referenced by cond is initialized with
216  * the attributes required by the FOSA implementation.
217  *
218  *  Returns 0 if successful; otherwise it returns an error code:
219  *     EAGAIN: the system lacked the necessary resources to create the
220  *             condition variable
221  *     ENOMEM: Insufficient memory exists to initialize the condition variable
222  *     EBUSY:  The system has detected an attempt to reinitialize the
223  *             condition variable
224  **/
225 int fosa_cond_init(fosa_cond_t *cond)
226 {
227         return pthread_cond_init(cond, NULL);
228 }
229
230 /**
231  * fosa_cond_destroy()
232  *
233  * Destroy a condition variable
234  *
235  * The condition variable pointed to by cond is destroyed
236  *
237  * Returns 0 if successful; otherwise it returns an error code:
238  *     EINVAL: the value of cond is invalid
239  *     EBUSY:  The condition variable is in use (a thread is waiting on it)
240  **/
241 int fosa_cond_destroy(fosa_cond_t *cond)
242 {
243         return pthread_cond_destroy(cond);
244 }
245
246 /**
247  * fosa_cond_signal()
248  *
249  * Signal a condition variable
250  *
251  * This call unblocks at least one of the threads that are waiting on
252  * the condition variable referenced by cond. If there are no threads
253  * waiting, the function has no effect
254  *
255  * Returns 0 if successful; otherwise it returns an error code:
256  *     EINVAL: the value of cond is invalid
257  **/
258 int fosa_cond_signal(fosa_cond_t *cond)
259 {
260         return pthread_cond_signal(cond);
261 }
262
263 /**
264  * fosa_cond_broadcast()
265  *
266  * Broadcast a condition variable
267  *
268  * This call unblocks all of the threads that are waiting on the
269  * condition variable referenced by cond. If there are no threads
270  * waiting, the function has no effect.
271  *
272  * Returns 0 if successful; otherwise it returns an error code:
273  *     EINVAL: the value of cond is invalid
274  **/
275 int fosa_cond_broadcast(fosa_cond_t *cond)
276 {
277         return pthread_cond_broadcast(cond);
278 }
279
280 /**
281  * fosa_cond_wait()
282  *
283  * Wait at a condition variable
284  *
285  * This call is used to block on the condition variable referenced by
286  * cond. It shall be called with the mutex referenced by mutex
287  * locked. The function releases the mutex and blocks the calling
288  * thread until the condition is signalled by some other thread and
289  * the calling thread is awakened. Then it locks the mutex and
290  * returns with the mutex locked by the calling thread.
291  *
292  * Returns 0 if successful; otherwise it returns an error code:
293  *    EINVAL: the value of cond or mutex is invalid, or different
294  *            mutexes were used for concurrent wait operations on cond, or
295  *            the mutex was not owned by the calling thread
296  **/
297 int fosa_cond_wait(fosa_cond_t *cond, fosa_mutex_t *mutex)
298 {
299         return pthread_cond_wait(cond, mutex);
300 }
301
302 /**
303  * fosa_cond_timedwait()
304  *
305  * Wait at a condition variable, with a timeout
306  *
307  * This function is equal to fosa_cond_wait(), except that the maximum
308  * wait time is limited to the absolute time referenced by abstime, as
309  * measured by the FOSA_CLOCK_ABSOLUTE clock.
310  *
311  * Returns 0 if successful; otherwise it returns an error code:
312  *     EINVAL: the value of cond or mutex or abstime is invalid, or different
313  *             mutexes were used for concurrent wait operations on cond, or
314  *             the mutex was not owned by the calling thread
315  *     ETIMEDOUT: the timeout expired
316  **/
317 int fosa_cond_timedwait(fosa_cond_t *cond,
318         fosa_mutex_t *mutex,
319         const fosa_abs_time_t *abstime)
320 {
321         struct timespec abstime_tspec;
322
323         abstime_tspec = fosa_abs_time_to_timespec(*abstime);
324
325         return pthread_cond_timedwait(cond, mutex, &abstime_tspec);
326 }