The Pedigree Project
0.1
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
src
user
applications
winman
util.h
1
/*
2
* Copyright (c) 2008-2014, Pedigree Developers
3
*
4
* Please see the CONTRIB file in the root of the source tree for a full
5
* list of contributors.
6
*
7
* Permission to use, copy, modify, and distribute this software for any
8
* purpose with or without fee is hereby granted, provided that the above
9
* copyright notice and this permission notice appear in all copies.
10
*
11
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
12
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
13
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
14
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
15
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
16
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
17
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
18
*/
19
20
#ifndef _WINMAN_UTIL_H
21
#define _WINMAN_UTIL_H
22
23
#ifndef TARGET_LINUX
24
#include "pedigree/native/ipc/Ipc.h"
25
#endif
26
33
class
SharedBuffer
34
{
35
public
:
36
SharedBuffer
(
size_t
size);
37
SharedBuffer
(
size_t
size,
void
*handle);
38
39
virtual
~SharedBuffer
();
40
42
void
*
getBuffer
();
43
45
void
*
getHandle
();
46
47
#ifdef TARGET_LINUX
48
char
m_ShmName[8];
49
int
m_ShmFd;
50
51
void
*m_pBuffer;
52
size_t
m_Size;
53
54
static
size_t
m_NextId;
55
#else
56
PedigreeIpc::SharedIpcMessage
*m_pFramebuffer;
57
#endif
58
};
59
60
#endif
SharedBuffer::getBuffer
void * getBuffer()
Definition:
user/applications/winman/util.cc:56
SharedBuffer::getHandle
void * getHandle()
Definition:
user/applications/winman/util.cc:51
PedigreeIpc::SharedIpcMessage
Definition:
modules/subsys/native/include/pedigree/native/ipc/Ipc.h:51
SharedBuffer
Abstracts a buffer shared between multiple processes.
Definition:
util.h:33
SharedBuffer::~SharedBuffer
virtual ~SharedBuffer()
Definition:
user/applications/winman/util.cc:44
Generated on Fri Jan 24 2020 06:49:08 for The Pedigree Project by
1.8.11