函数源码 |
Source File:fs\timerfd.c |
Create Date:2022-07-29 10:51:48 |
首页 | Copyright©Brick |
133 134 135 136 137 138 139 | static bool timerfd_canceled( struct timerfd_ctx *ctx) { if (!ctx->might_cancel || ctx->moffs != KTIME_MAX) return false ; ctx->moffs = ktime_mono_to_real(0); return true ; } |