|
Last change
on this file since 121 was 91, checked in by DHERBOMEZ Gérald, 13 years ago |
|
Improvement of the build system to avoid some workarounds
|
-
Property svn:keywords
set to
Id
|
|
File size:
1.2 KB
|
| Line | |
|---|
| 1 | // %pacpus:license{
|
|---|
| 2 | // This file is part of the PACPUS framework distributed under the
|
|---|
| 3 | // CECILL-C License, Version 1.0.
|
|---|
| 4 | // %pacpus:license}
|
|---|
| 5 | /// @file
|
|---|
| 6 | /// @author Gerald Dherbomez <firstname.surname@utc.fr>
|
|---|
| 7 | /// @date January, 2007
|
|---|
| 8 | /// @version $Id: PosixShMem.h 91 2013-05-19 10:32:48Z gdherbom $
|
|---|
| 9 | /// @copyright Copyright (c) UTC/CNRS Heudiasyc 2006 - 2013. All rights reserved.
|
|---|
| 10 | /// @brief Brief description.
|
|---|
| 11 | ///
|
|---|
| 12 | /// Detailed description.
|
|---|
| 13 |
|
|---|
| 14 | #ifndef DEF_PACPUS_POSIXSHMEM_H
|
|---|
| 15 | #define DEF_PACPUS_POSIXSHMEM_H
|
|---|
| 16 |
|
|---|
| 17 | #include <QSharedMemory>
|
|---|
| 18 | #include <QSystemSemaphore>
|
|---|
| 19 |
|
|---|
| 20 | #include <Pacpus/PacpusTools/ShMemBase.h>
|
|---|
| 21 |
|
|---|
| 22 | /// @todo Documentation
|
|---|
| 23 | class PosixShMem
|
|---|
| 24 | : public ShMemBase
|
|---|
| 25 | {
|
|---|
| 26 | public:
|
|---|
| 27 | /// @todo Documentation
|
|---|
| 28 | PosixShMem(const char * name, int size);
|
|---|
| 29 | /// @todo Documentation
|
|---|
| 30 | virtual ~PosixShMem();
|
|---|
| 31 |
|
|---|
| 32 | /// @todo Documentation
|
|---|
| 33 | virtual void *read();
|
|---|
| 34 | /// @todo Documentation
|
|---|
| 35 | virtual void write(void *data, int size, unsigned long offset = 0);
|
|---|
| 36 | /// @todo Documentation
|
|---|
| 37 | virtual bool wait(unsigned long timeout = 0);
|
|---|
| 38 | /// @todo Documentation
|
|---|
| 39 | virtual void lockMemory();
|
|---|
| 40 | /// @todo Documentation
|
|---|
| 41 | virtual void unlockMemory();
|
|---|
| 42 |
|
|---|
| 43 | private:
|
|---|
| 44 | QSystemSemaphore * event_;
|
|---|
| 45 | QSharedMemory * memory_;
|
|---|
| 46 | };
|
|---|
| 47 |
|
|---|
| 48 | #endif // DEF_PACPUS_POSIXSHMEM_H
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.