TDME2
1.9.121
src
tdme
os
network
platform
bsd
KernelEventMechanismPSD.h
Go to the documentation of this file.
1
#pragma once
2
3
#include <sys/event.h>
4
5
#include <
tdme/tdme.h
>
6
#include <
tdme/os/network/fwd-tdme.h
>
7
#include <
tdme/os/network/platform/bsd/fwd-tdme.h
>
8
9
#include <
tdme/os/threading/Mutex.h
>
10
11
using
tdme::os::threading::Mutex
;
12
13
/**
14
* BSD kernel event mechanism platform specific data
15
* @author Andreas Drewke
16
*/
17
class
tdme::os::network::platform::bsd::KernelEventMechanismPSD
{
18
friend
class
tdme::os::network::KernelEventMechanism
;
19
20
private
:
21
/**
22
* @brief Public constructor
23
*/
24
KernelEventMechanismPSD
() :
25
kq
(0),
26
kqChangeListMax
(0),
27
kqChangeListBuffer
(0),
28
kqChangeListCurrent
(0),
29
kqChangeList
(NULL),
30
kqMutex
(
"kem_kq_mutex"
),
31
kqEventListMax
(0),
32
kqEventList
(NULL) {
33
//
34
}
35
36
int
kq
;
37
38
unsigned
int
kqChangeListMax
;
39
unsigned
int
kqChangeListBuffer
;
40
unsigned
int
kqChangeListCurrent
;
41
struct
kevent**
kqChangeList
;
42
Mutex
kqMutex
;
43
44
unsigned
int
kqEventListMax
;
45
struct
kevent*
kqEventList
;
46
};
Mutex.h
tdme::os::network::KernelEventMechanism
Interface to kernel event mechanismns.
Definition:
KernelEventMechanism.h:17
tdme::os::network::platform::bsd::KernelEventMechanismPSD
BSD kernel event mechanism platform specific data.
Definition:
KernelEventMechanismPSD.h:17
tdme::os::network::platform::bsd::KernelEventMechanismPSD::KernelEventMechanismPSD
KernelEventMechanismPSD()
Public constructor.
Definition:
KernelEventMechanismPSD.h:24
tdme::os::network::platform::bsd::KernelEventMechanismPSD::kq
int kq
Definition:
KernelEventMechanismPSD.h:36
tdme::os::network::platform::bsd::KernelEventMechanismPSD::kqChangeListBuffer
unsigned int kqChangeListBuffer
Definition:
KernelEventMechanismPSD.h:39
tdme::os::network::platform::bsd::KernelEventMechanismPSD::kqChangeList
struct kevent ** kqChangeList
Definition:
KernelEventMechanismPSD.h:41
tdme::os::network::platform::bsd::KernelEventMechanismPSD::kqMutex
Mutex kqMutex
Definition:
KernelEventMechanismPSD.h:42
tdme::os::network::platform::bsd::KernelEventMechanismPSD::kqEventList
struct kevent * kqEventList
Definition:
KernelEventMechanismPSD.h:45
tdme::os::network::platform::bsd::KernelEventMechanismPSD::kqChangeListMax
unsigned int kqChangeListMax
Definition:
KernelEventMechanismPSD.h:38
tdme::os::network::platform::bsd::KernelEventMechanismPSD::kqChangeListCurrent
unsigned int kqChangeListCurrent
Definition:
KernelEventMechanismPSD.h:40
tdme::os::network::platform::bsd::KernelEventMechanismPSD::kqEventListMax
unsigned int kqEventListMax
Definition:
KernelEventMechanismPSD.h:44
tdme::os::threading::Mutex
Mutex implementation.
Definition:
Mutex.h:27
fwd-tdme.h
fwd-tdme.h
tdme.h
Generated by
1.9.3