Changeset dbe2533 for libcfa/src/concurrency/io
- Timestamp:
- Mar 21, 2022, 1:40:35 PM (4 years ago)
- Branches:
- ADT, ast-experimental, enum, master, pthread-emulation, qualifiedEnum
- Children:
- d672350
- Parents:
- b39e961b (diff), 4ecc35a (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- libcfa/src/concurrency/io
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/io/setup.cfa
rb39e961b rdbe2533 214 214 215 215 // completion queue 216 cq.lock = 0; 216 217 cq.head = (volatile __u32 *)(((intptr_t)cq.ring_ptr) + params.cq_off.head); 217 218 cq.tail = (volatile __u32 *)(((intptr_t)cq.ring_ptr) + params.cq_off.tail); -
libcfa/src/concurrency/io/types.hfa
rb39e961b rdbe2533 78 78 79 79 struct __cmp_ring_t { 80 volatile bool lock; 81 80 82 // Head and tail of the ring 81 83 volatile __u32 * head;
Note:
See TracChangeset
for help on using the changeset viewer.