1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 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