Changeset ded6c2a6
- Timestamp:
- Jun 1, 2023, 9:52:47 PM (23 months ago)
- Branches:
- ast-experimental, master
- Children:
- b5e3a80, bebfc2e
- Parents:
- 251ce80
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified libcfa/src/concurrency/channel.hfa ¶
r251ce80 rded6c2a6 51 51 vtable(channel_closed) channel_closed_vt; 52 52 53 static inline bool is_insert( channel_closed & e ) { return e lem != 0p; }54 static inline bool is_remove( channel_closed & e ) { return e lem == 0p; }53 static inline bool is_insert( channel_closed & e ) { return e.elem != 0p; } 54 static inline bool is_remove( channel_closed & e ) { return e.elem == 0p; } 55 55 56 56 // #define CHAN_STATS // define this to get channel stats printed in dtor
Note: See TracChangeset
for help on using the changeset viewer.