Changeset e71e94a for libcfa/src/concurrency/io
- Timestamp:
- Apr 1, 2022, 1:47:47 PM (3 years ago)
- Branches:
- ADT, ast-experimental, enum, master, pthread-emulation, qualifiedEnum
- Children:
- 5f53cc3
- Parents:
- 1417f6b
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/io/types.hfa
r1417f6b re71e94a 25 25 #include "iofwd.hfa" 26 26 #include "kernel/fwd.hfa" 27 #include "limits.hfa" 27 28 28 29 #if defined(CFA_HAVE_LINUX_IO_URING_H) … … 136 137 137 138 static inline unsigned long long ts($io_context *& this) { 139 const __u32 head = *this->cq.head; 140 const __u32 tail = *this->cq.tail; 141 142 if(head == tail) return MAX; 143 138 144 return this->cq.ts; 139 145 }
Note:
See TracChangeset
for help on using the changeset viewer.