diff options
Diffstat (limited to 'kern/timer.h')
-rw-r--r-- | kern/timer.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/kern/timer.h b/kern/timer.h index 9ebfd0e7..38dccfdc 100644 --- a/kern/timer.h +++ b/kern/timer.h @@ -38,6 +38,10 @@ struct timer; * Type for timer callbacks. * * These functions implement handler operations. + * + * Scheduling a timer synchronizes with handler operations on the same + * timer, and these operations synchronize with cancel operations on the + * same timer. */ typedef void (*timer_handler_fn_t)(struct timer *); |