| 292 | } |
| 293 | |
| 294 | void |
| 295 | TimerList::on_timer_settime(timer_t timerid, |
| 296 | int flags, |
| 297 | const struct itimerspec *new_value) |
| 298 | { |
| 299 | _do_lock_tbl(); |
| 300 | JASSERT(_timerInfo.find(timerid) != _timerInfo.end()); |
| 301 | _timerInfo[timerid].flags = flags; |
| 302 | _timerInfo[timerid].initial_timerspec = *new_value; |
| 303 | _do_unlock_tbl(); |
| 304 | } |
| 305 | |
| 306 | clockid_t |
| 307 | TimerList::on_clock_getcpuclockid(pid_t pid, clockid_t realId) |
no test coverage detected