Rev 2 | Details | Compare with Previous | Last modification | View Log | RSS feed
Rev | Author | Line No. | Line |
---|---|---|---|
2 | pj | 1 | /* |
2 | * Project: HARTIK (HA-rd R-eal TI-me K-ernel) |
||
3 | * |
||
4 | * Coordinators: Giorgio Buttazzo <giorgio@sssup.it> |
||
5 | * Gerardo Lamastra <gerardo@sssup.it> |
||
6 | * |
||
7 | * Authors : Massimiliano Giorgi <massy@hartik.sssup.it> |
||
8 | * (see authors.txt for full list of hartik's authors) |
||
9 | * |
||
10 | * ReTiS Lab (Scuola Superiore S.Anna - Pisa - Italy) |
||
11 | * |
||
12 | * http://www.sssup.it |
||
13 | * http://retis.sssup.it |
||
14 | * http://hartik.sssup.it |
||
15 | */ |
||
16 | |||
17 | /* |
||
18 | * Copyright (C) 1999 Massimiliano Giorgi |
||
19 | * |
||
20 | * This program is free software; you can redistribute it and/or modify |
||
21 | * it under the terms of the GNU General Public License as published by |
||
22 | * the Free Software Foundation; either version 2 of the License, or |
||
23 | * (at your option) any later version. |
||
24 | * |
||
25 | * This program is distributed in the hope that it will be useful, |
||
26 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
||
27 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||
28 | * GNU General Public License for more details. |
||
29 | * |
||
30 | * You should have received a copy of the GNU General Public License |
||
31 | * along with this program; if not, write to the Free Software |
||
32 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
||
33 | * |
||
34 | */ |
||
35 | |||
36 | /* |
||
37 | * CVS : $Id: mutex.h,v 1.1.1.1 2002-03-29 14:12:50 pj Exp $ |
||
38 | * |
||
39 | * File: $File$ |
||
40 | * Revision: $Revision: 1.1.1.1 $ |
||
41 | * Last update: $Date: 2002-03-29 14:12:50 $ |
||
42 | */ |
||
43 | |||
44 | /**** |
||
45 | This file binds the functions used internally for mutex regions with the real functions; |
||
46 | two kind of mutex are used: normal mutex and fast mutex. |
||
47 | ****/ |
||
48 | |||
49 | #ifndef __MUTEX_H |
||
50 | #define __MUTEX_H |
||
51 | |||
52 | #include <fs/mutex.h> |
||
53 | |||
54 | extern void *fsmutexattr; |
||
55 | |||
56 | #define __fs_mutex_t __mutex_t |
||
57 | |||
58 | #define __fs_mutex_init(ptr) __mutex_init(ptr,fsmutexattr); |
||
59 | #define __fs_mutex_lock(ptr) __mutex_lock(ptr) |
||
60 | #define __fs_mutex_trylock(ptr) __mutex_trylock(ptr) |
||
61 | #define __fs_mutex_unlock(ptr) __mutex_unlock(ptr) |
||
62 | |||
63 | #define __fs_fastmutex_t __fastmutex_t |
||
64 | |||
65 | #define __fs_fastmutex_init(ptr) __fastmutex_init(ptr) |
||
66 | #define __fs_fastmutex_lock(ptr) __fastmutex_lock(ptr) |
||
67 | #define __fs_fastmutex_unlock(ptr) __fastmutex_unlock(ptr) |
||
68 | |||
69 | #endif |