Changeset 69fbc61 for libcfa/src/concurrency/stats.hfa
- Timestamp:
- Jun 25, 2020, 2:30:46 PM (3 years ago)
- Branches:
- ADT, arm-eh, ast-experimental, enum, forall-pointer-decay, jacob/cs343-translation, master, new-ast, new-ast-unique-expr, pthread-emulation, qualifiedEnum
- Children:
- 566fde0
- Parents:
- 8e27ac45
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/stats.hfa
r8e27ac45 r69fbc61 7 7 static inline void __init_stats( struct __stats_t * ) {} 8 8 static inline void __tally_stats( struct __stats_t *, struct __stats_t * ) {} 9 static inline void __print_stats( struct __stats_t *, bool, const char *, void * ) {}9 static inline void __print_stats( struct __stats_t *, int, bool, const char *, void * ) {} 10 10 #else 11 enum { 12 CFA_STATS_READY_Q = 0x01, 13 #if defined(HAVE_LINUX_IO_URING_H) 14 CFA_STATS_IO = 0x02, 15 #endif 16 }; 17 11 18 struct __attribute__((aligned(64))) __stats_readQ_t { 12 19 struct { … … 96 103 void __init_stats ( struct __stats_t * ); 97 104 void __tally_stats( struct __stats_t *, struct __stats_t * ); 98 void __print_stats( struct __stats_t *, bool, const char *, void * );105 void __print_stats( struct __stats_t *, int, bool, const char *, void * ); 99 106 #endif 100 107
Note: See TracChangeset
for help on using the changeset viewer.