Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libcfa/src/concurrency/kernel.hfa

    r160f1aa r31c967b  
    181181
    182182// Aligned timestamps which are used by the ready queue and io subsystem
    183 union __attribute__((aligned(64))) __timestamp_t {
    184         struct {
    185                 volatile unsigned long long tv;
    186                 volatile unsigned long long ma;
    187         } t;
    188         char __padding[192];
    189 };
    190 
    191 static inline void  ?{}(__timestamp_t & this) { this.t.tv = 0; this.t.ma = 0; }
    192 static inline void ^?{}(__timestamp_t &) {}
     183union __attribute__((aligned(64))) __timestamp_t;
     184
     185void  ?{}(__timestamp_t & this);
     186void ^?{}(__timestamp_t &);
    193187
    194188
Note: See TracChangeset for help on using the changeset viewer.