| 38 | |
| 39 | template <typename T> |
| 40 | [[gnu::always_inline]] inline void dummy_final_work(T val) { |
| 41 | // UPDATE HERE - final work |
| 42 | // This is the function that will be executed with the value as soon as the signal function finishes |
| 43 | asm volatile("" :: "r"(val)); // Dummy using value |
| 44 | std::cout << "Val: " << val << "\n"; |
| 45 | } |
| 46 | |
| 47 | int main() { |
| 48 | using target_size_t = uint8_t; |
nothing calls this directly
no outgoing calls
no test coverage detected