mirror of
https://github.com/sunnypilot/sunnypilot.git
synced 2026-07-20 01:32:10 +08:00
ac6b182524
version: sunnypilot v2026.002.000 (dev)
date: 2026-07-16T04:41:37
master commit: 70f2c3ac79
11 lines
220 B
C++
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;
|
|
}
|