- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/kernel_private.hfa
rd3605f8 ra633f6f 39 39 } 40 40 41 // Defines whether or not we *want* to use io_uring_enter as the idle_sleep blocking call42 #define CFA_WANT_IO_URING_IDLE43 44 // Defines whether or not we *can* use io_uring_enter as the idle_sleep blocking call45 #if defined(CFA_WANT_IO_URING_IDLE) && defined(CFA_HAVE_LINUX_IO_URING_H)46 #if defined(CFA_HAVE_IORING_OP_READ) || (defined(CFA_HAVE_READV) && defined(CFA_HAVE_IORING_OP_READV))47 #define CFA_WITH_IO_URING_IDLE48 #endif49 #endif50 51 41 //----------------------------------------------------------------------------- 52 42 // Scheduler … … 159 149 __atomic_store_n(ll, (bool)false, __ATOMIC_RELEASE); 160 150 } 151 152 153 154 161 155 162 156 //-----------------------------------------------------------------------
Note:
See TracChangeset
for help on using the changeset viewer.