TDME2 1.9.121
KernelEventMechanismPSD.h
Go to the documentation of this file.
1#pragma once
2
3#include <sys/event.h>
4
5#include <tdme/tdme.h>
8
10
12
13/**
14 * BSD kernel event mechanism platform specific data
15 * @author Andreas Drewke
16 */
19
20private:
21 /**
22 * @brief Public constructor
23 */
25 kq(0),
29 kqChangeList(NULL),
30 kqMutex("kem_kq_mutex"),
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;
43
44 unsigned int kqEventListMax;
45 struct kevent* kqEventList;
46};
Interface to kernel event mechanismns.
BSD kernel event mechanism platform specific data.
Mutex implementation.
Definition: Mutex.h:27