Changeset 742f95ec in mainline for kernel/generic/include/time/timeout.h
- Timestamp:
- 2022-08-15T14:20:53Z (3 years ago)
- Branches:
- master, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
- Children:
- ad58fd2
- Parents:
- d9dda26
- git-author:
- Jiří Zárevúcky <zarevucky.jiri@…> (2022-08-15 14:08:44)
- git-committer:
- Jiří Zárevúcky <zarevucky.jiri@…> (2022-08-15 14:20:53)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/generic/include/time/timeout.h
rd9dda26 r742f95ec 47 47 /** Link to the list of active timeouts on CURRENT->cpu */ 48 48 link_t link; 49 /** Timeout will be activated in this amount of clock() ticks. */50 uint64_t ticks;49 /** Timeout will be activated when current clock tick reaches this value. */ 50 uint64_t deadline; 51 51 /** Function that will be called on timeout activation. */ 52 52 timeout_handler_t handler;
Note:
See TracChangeset
for help on using the changeset viewer.