All public logs

Jump to navigation Jump to search

Combined display of all available logs of SoftwareGuy. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).

Logs
  • 14:21, 28 March 2024 Mark talk contribs created page C based timer (Created page with "<code>#include <iostream> #include <unistd.h> <using namespace std; // Define the callback function void callback() { cout << "Timer callback called!" << endl;</code> <code>}</code> ''<code>// Create the timer</code>'' <code>timer_t timer;</code> <code>struct sigevent sigev;</code> ''<code>// Set up the timer</code>'' <code>sigev.sigev_notify = SIGEV_THREAD;</code> <code>sigev.sigev_notify_function = callback;</code> <code>sigev.sigev_value.sival_ptr = &timer;</c...") Tag: Visual edit: Switched