TDME2 1.9.121
KernelEventMechanismPSD.h
Go to the documentation of this file.
1#pragma once
2
3#include <sys/epoll.h>
4
5#include <tdme/tdme.h>
8
9/**
10 * Linux kernel event mechanism platform specific data
11 * @author Andreas Drewke
12 */
15
16private:
17 /**
18 * @brief Public constructor
19 */
21 ep(0),
23 epEventList(NULL) {
24 //
25 }
26
27 int ep;
28 unsigned int epEventListMax;
29 struct epoll_event* epEventList;
30};
Interface to kernel event mechanismns.
Linux kernel event mechanism platform specific data.