Ignore:
Timestamp:
Mar 27, 2018, 5:22:58 PM (6 years ago)
Author:
Peter A. Buhr <pabuhr@…>
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:
43725bd
Parents:
af1ed1ad
Message:

second draft of time package and incorporation into runtime kernel

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/libcfa/concurrency/alarm.c

    raf1ed1ad r2a84d06d  
    1010// Created On       : Fri Jun 2 11:31:25 2017
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Fri Jul 21 22:35:18 2017
    13 // Update Count     : 1
     12// Last Modified On : Tue Mar 27 14:12:11 2018
     13// Update Count     : 41
    1414//
    1515
     
    2727
    2828
    29 static inline void ?{}( itimerval & this, __cfa_time_t * alarm ) with( this ) {
    30         it_value.tv_sec = alarm->val / (1`cfa_s).val;                   // seconds
    31         it_value.tv_usec = max( (alarm->val % (1`cfa_s).val) / (1`cfa_us).val, 1000 ); // microseconds
    32         it_interval.tv_sec = 0;
    33         it_interval.tv_usec = 0;
    34 }
    35 
    36 static inline void ?{}( __cfa_time_t & this, timespec * curr ) {
    37         uint64_t secs  = curr->tv_sec;
    38         uint64_t nsecs = curr->tv_nsec;
    39         this.val = from_s(secs).val + nsecs;
     29static inline void ?{}( itimerval & this, Duration alarm ) with( this ) {
     30        it_value   { alarm };                                                           // seconds, microseconds
     31        it_interval{ 0 };
    4032}
    4133
     
    4436//=============================================================================================
    4537
    46 __cfa_time_t __kernel_get_time() {
     38Time __kernel_get_time() {
    4739        timespec curr;
    48         clock_gettime( CLOCK_REALTIME, &curr );
    49         return (__cfa_time_t){ &curr };
     40        clock_gettime( CLOCK_MONOTONIC_RAW, &curr );            // CLOCK_REALTIME
     41        return (Time){ curr };
    5042}
    5143
    52 void __kernel_set_timer( __cfa_time_t alarm ) {
    53         itimerval val = { &alarm };
    54         setitimer( ITIMER_REAL, &val, NULL );
     44void __kernel_set_timer( Duration alarm ) {
     45        setitimer( ITIMER_REAL, &(itimerval){ alarm }, NULL );
    5546}
    5647
     
    5950//=============================================================================================
    6051
    61 void ?{}( alarm_node_t & this, thread_desc * thrd, __cfa_time_t alarm = 0`cfa_s, __cfa_time_t period = 0`cfa_s ) with( this ) {
     52void ?{}( alarm_node_t & this, thread_desc * thrd, Time alarm, Duration period ) with( this ) {
    6253        this.thrd = thrd;
    6354        this.alarm = alarm;
     
    6859}
    6960
    70 void ?{}( alarm_node_t & this, processor   * proc, __cfa_time_t alarm = 0`cfa_s, __cfa_time_t period = 0`cfa_s ) with( this ) {
     61void ?{}( alarm_node_t & this, processor   * proc, Time alarm, Duration period ) with( this ) {
    7162        this.proc = proc;
    7263        this.alarm = alarm;
Note: See TracChangeset for help on using the changeset viewer.