Files
carrotpilot/msgq_repo/msgq/impl_fake.cc
Vehicle Researcher ecf4d58ce5 c4-v1
2026-01-28 08:27:01 +09:00

11 lines
220 B
C++

#include <vector>
#include "msgq/impl_fake.h"
void FakePoller::registerSocket(SubSocket *socket) {
this->sockets.push_back(socket);
}
std::vector<SubSocket*> FakePoller::poll(int timeout) {
return this->sockets;
}