Changes in / [20ab637:59f74a2]
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/src/concurrency/io.cfa
r20ab637 r59f74a2 218 218 // adjust the size according to the parameters 219 219 if ((params.features & IORING_FEAT_SINGLE_MMAP) != 0) { 220 cq ->ring_sz = sq->ring_sz = max(cq->ring_sz, sq->ring_sz);220 cq.ring_sz = sq.ring_sz = max(cq.ring_sz, sq.ring_sz); 221 221 } 222 222 #endif … … 232 232 // mmap the Completion Queue into existence (may or may not be needed) 233 233 if ((params.features & IORING_FEAT_SINGLE_MMAP) != 0) { 234 cq ->ring_ptr = sq->ring_ptr;234 cq.ring_ptr = sq.ring_ptr; 235 235 } 236 236 else … … 494 494 static [int, bool] __drain_io( & struct __io_data ring, * sigset_t mask ) { 495 495 /* paranoid */ verify( !kernelTLS.preemption_state.enabled ); 496 const uint32_t smask = *ring.submit_q.mask;497 496 498 497 unsigned to_submit = 0; -
src/Makefile.in
r20ab637 r59f74a2 626 626 627 627 BUILT_SOURCES = Parser/parser.hh 628 AM_YFLAGS = -d -t -v 628 AM_YFLAGS = -d -t -v -Wno-yacc 629 629 SRC_RESOLVEXPR = \ 630 630 ResolvExpr/AdjustExprType.cc \ -
src/Parser/module.mk
r20ab637 r59f74a2 17 17 BUILT_SOURCES = Parser/parser.hh 18 18 19 AM_YFLAGS = -d -t -v 19 AM_YFLAGS = -d -t -v -Wno-yacc 20 20 21 21 SRC += \
Note: See TracChangeset
for help on using the changeset viewer.