Removed some comments.

This commit is contained in:
Brad Arant 2022-03-15 21:10:48 +00:00
parent 3a6883e77f
commit c918e42290
2 changed files with 0 additions and 2 deletions

View File

@ -137,7 +137,6 @@ namespace core {
outlock.lock(); outlock.lock();
fifo.emplace(data); fifo.emplace(data);
outlock.unlock(); outlock.unlock();
// ePoll.resetSocket(this);
return 1; return 1;
} }

View File

@ -4,7 +4,6 @@ namespace core {
Timer::Timer(EPoll &ePoll, double delay = 0.0f) : Socket(ePoll, "Timer") { Timer::Timer(EPoll &ePoll, double delay = 0.0f) : Socket(ePoll, "Timer") {
setDescriptor(timerfd_create(CLOCK_REALTIME, 0)); setDescriptor(timerfd_create(CLOCK_REALTIME, 0));
// ePoll.registerSocket(this);
setTimer(delay); setTimer(delay);
} }