Changeset bc03be3 for src/libcfa/concurrency/alarm.c
- Timestamp:
- Apr 4, 2018, 9:50:23 PM (7 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, with_gc
- Children:
- 643c6b9
- Parents:
- bb37870
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/libcfa/concurrency/alarm.c
rbb37870 rbc03be3 10 10 // Created On : Fri Jun 2 11:31:25 2017 11 11 // Last Modified By : Peter A. Buhr 12 // Last Modified On : Tue Mar 27 14:12:11201813 // Update Count : 4 112 // Last Modified On : Wed Apr 4 16:47:29 2018 13 // Update Count : 49 14 14 // 15 15 … … 28 28 29 29 static inline void ?{}( itimerval & this, Duration alarm ) with( this ) { 30 it_value { alarm }; // seconds, microseconds 31 it_interval{ 0 }; 30 // itimerval.it_value is a duration but uses time data-structure timeval. 31 it_value{ alarm`s, alarm`us }; // seconds, microseconds 32 it_interval{ 0 }; // 0 seconds, 0 microseconds 32 33 } 33 34
Note: See TracChangeset
for help on using the changeset viewer.