Removed pointless enum and tidied comments

This commit is contained in:
Nav
2022-09-26 21:21:57 +01:00
parent ba3152badb
commit ef4eb4f768
4 changed files with 6 additions and 14 deletions

View File

@@ -106,12 +106,12 @@ namespace Bloom::DebugServer::Gdb
this->epollInstance.addEntry(
this->serverSocketFileDescriptor.value(),
static_cast<std::uint16_t>(EpollEvent::READ_READY)
static_cast<std::uint16_t>(::EPOLL_EVENTS::EPOLLIN)
);
this->epollInstance.addEntry(
this->interruptEventNotifier.getFileDescriptor(),
static_cast<std::uint16_t>(EpollEvent::READ_READY)
static_cast<std::uint16_t>(::EPOLL_EVENTS::EPOLLIN)
);
Logger::info("GDB RSP address: " + this->debugServerConfig.listeningAddress);