TDME2 1.9.121
KernelEventMechanismPSD.h
Go to the documentation of this file.
1#pragma once
2
3#if defined(_WIN32)
4 #include <winsock2.h>
5#else
6 #include <sys/select.h>
7#endif
8
9#include <map>
10#include <vector>
11
12#include <tdme/tdme.h>
16
18
19using std::map;
20using std::vector;
21
23
24/**
25 * Fallback/select kernel event mechanism platform specific data
26 * @author Andreas Drewke
27 */
30
31private:
32 struct Event {
35 void* cookie;
36 };
37
38 /**
39 * @brief Public constructor
40 */
42 maxFd(0),
43 fdsMutex("kemfallbackpsdfdmutex")
44 {
45 //
46 }
47
48 int maxFd;
50 fd_set rfds;
51 fd_set wfds;
52 map<int, void*> fds;
53 vector<Event> events;
54};
Interface to kernel event mechanismns.
Fallback/select kernel event mechanism platform specific data.
Mutex implementation.
Definition: Mutex.h:27
uint8_t NIOInterest
type definiton for network UI interest
Definition: NIOInterest.h:10