File: rt_test.cc

package info (click to toggle)
seastar 25.05.0-1
  • links: PTS
  • area: main
  • in suites: sid
  • size: 7,256 kB
  • sloc: cpp: 89,250; python: 5,066; ansic: 3,452; sh: 1,272; xml: 177; makefile: 9
file content (10 lines) | stat: -rw-r--r-- 156 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
extern "C" {
#include <signal.h>
#include <time.h>
}

int main() {
    timer_t td;
    struct sigevent sev;
    timer_create(CLOCK_MONOTONIC, &sev, &td);
}