Create a timer on Linux
The timing of certain events is a common task for a developer. Common scenarios for timers are watchdogs, cyclic execution of tasks, or scheduling events for a specific time. In this article, I show how to create a POSIX-compliant interval timer using timer_create(…). You can download the source code for the following examples from GitHub. read more Powered by...