Comment 4 for bug 1042388

Revision history for this message
Riku Voipio (riku-voipio) wrote :

Implementing timer_create along is probably not enough, one would have to implement rest of the related syscalls:

       * timer_create(): Create a timer.
       * timer_settime(2): Arm (start) or disarm (stop) a timer.
       * timer_gettime(2): Fetch the time remaining until the next expiration of a timer, along with the interval setting of the timer.
       * timer_getoverrun(2): Return the overrun count for the last timer expiration.
       * timer_delete(2): Disarm and delete a timer.

Convinient testcases for timer* syscalls exist apparently in ltp suite.