TDME2  1.9.200
KernelEventMechanismPSD.h
Go to the documentation of this file.
1 #pragma once
2 
3 #include <vector>
4 
5 #include <sys/epoll.h>
6 
7 #include <tdme/tdme.h>
10 
11 using std::vector;
12 
13 /**
14  * Linux kernel event mechanism platform specific data
15  * @author Andreas Drewke
16  */
19 
20 private:
21  // forbid class copy
23 
24  /**
25  * @brief Public constructor
26  */
28  ep(0),
29  epEventListMax(0) {
30  //
31  }
32 
33  int ep;
34  unsigned int epEventListMax;
35  vector<epoll_event> epEventList;
36 };
Interface to kernel event mechanismns.
Linux kernel event mechanism platform specific data.
#define FORBID_CLASS_COPY(CLASS)
Definition: tdme.h:6