Changeset 07b8001 for src/libcfa/time


Ignore:
Timestamp:
Apr 13, 2018, 8:44:35 AM (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:
bd5cf7c
Parents:
10a97ad
Message:

adjust size of "time"

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/libcfa/time

    r10a97ad r07b8001  
    1010// Created On       : Wed Mar 14 23:18:57 2018
    1111// Last Modified By : Peter A. Buhr
    12 // Last Modified On : Thu Apr 12 16:53:35 2018
    13 // Update Count     : 629
     12// Last Modified On : Fri Apr 13 07:51:52 2018
     13// Update Count     : 634
    1414//
    1515
     
    2929
    3030//######################### Duration #########################
     31
     32static inline void ?{}( Duration & dur, Duration d ) with( dur ) { tv = d.tv; }
    3133
    3234static inline Duration ?=?( Duration & dur, zero_t ) { return dur{ 0 }; }
     
    135137//######################### Time #########################
    136138
    137 static inline Time ?=?( Time & t, zero_t ) { return t{ 0 }; }
    138 
    139 static inline void ?{}( Time & time, timeval t ) with( time ) {
    140         tv = (int64_t)t.tv_sec * TIMEGRAN + t.tv_usec * 1000;
    141 } // Time
     139static inline void ?{}( Time & time, Time t ) with( time ) { tv = t.tv; }
     140void ?{}( Time & time, int year, int month = 0, int day = 0, int hour = 0, int min = 0, int sec = 0, int nsec = 0 );
     141static inline void ?{}( Time & time, timeval t ) with( time ) { tv = (int64_t)t.tv_sec * TIMEGRAN + t.tv_usec * 1000; }
     142
     143static inline Time ?=?( Time & time, zero_t ) { return time{ 0 }; }
    142144
    143145static inline Time ?=?( Time & time, timeval t ) with( time ) {
Note: See TracChangeset for help on using the changeset viewer.