diff options
| author | Nicolas James <Eele1Ephe7uZahRie@tutanota.com> | 2026-04-05 22:01:11 +1000 |
|---|---|---|
| committer | Nicolas James <Eele1Ephe7uZahRie@tutanota.com> | 2026-04-05 22:01:11 +1000 |
| commit | cf0bced6cd86782e9706acda1b3b6ce6b4e98481 (patch) | |
| tree | 618912ff9025cf0d249e10203b110002a26450f9 /src/submission.hh | |
| parent | 21e55ae8a1b3ddd4dff6c24a57bdc7d7272fff16 (diff) | |
Implement refactored AL2, todo frame limit
Diffstat (limited to 'src/submission.hh')
| -rw-r--r-- | src/submission.hh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/submission.hh b/src/submission.hh new file mode 100644 index 0000000..69ec576 --- /dev/null +++ b/src/submission.hh @@ -0,0 +1,16 @@ +#ifndef SUBMISSIONS_HH_ +#define SUBMISSIONS_HH_ + +#include "device_clock.hh" +#include "timestamp_pool.hh" + +namespace low_latency { + +struct Submission { + std::shared_ptr<TimestampPool::Handle> start, end; + DeviceClock::time_point_t time; +}; + +} // namespace low_latency + +#endif
\ No newline at end of file |
