函数源码 |
Source File:fs\timerfd.c |
Create Date:2022-07-29 10:51:47 |
首页 | Copyright©Brick |
72 73 74 75 76 77 78 | static enum hrtimer_restart timerfd_tmrproc( struct hrtimer *htmr) { struct timerfd_ctx *ctx = container_of(htmr, struct timerfd_ctx, t.tmr); timerfd_triggered(ctx); return HRTIMER_NORESTART; } |