source: flair-src/trunk/lib/FlairCore/src/unexported/Mutex_impl.h@ 475

Last change on this file since 475 was 15, checked in by Bayard Gildas, 8 years ago

sources reformatted with flair-format-dir script

File size: 803 bytes
RevLine 
[2]1// %flair:license{
[15]2// This file is part of the Flair framework distributed under the
3// CECILL-C License, Version 1.0.
[2]4// %flair:license}
5/*!
6 * \file Mutex_impl.h
7 * \brief Class defining a mutex
8 * \author Guillaume Sanahuja, Copyright Heudiasyc UMR UTC/CNRS 7253
9 * \date 2012/03/14
10 * \version 4.0
11 */
12
13#ifndef MUTEX_IMPL_H
14#define MUTEX_IMPL_H
15
16#ifdef __XENO__
17#include <native/mutex.h>
18#else
19#include <pthread.h>
20#endif
21
[15]22namespace flair {
23namespace core {
24class Mutex;
[2]25}
[15]26}
[2]27
[15]28class Mutex_impl {
29public:
30 Mutex_impl(flair::core::Mutex *self);
31 ~Mutex_impl();
32 void GetMutex(void);
33 void ReleaseMutex(void);
[2]34// bool IsLocked(void);
35#ifdef __XENO__
[15]36 RT_MUTEX mutex;
[2]37#else
[15]38 pthread_mutex_t mutex;
39// bool flag_locked;
[2]40#endif
41
[15]42private:
43 flair::core::Mutex *self;
[2]44};
45
46#endif // MUTEX_IMPL_H
Note: See TracBrowser for help on using the repository browser.