@@ -114,8 +114,8 @@ inline void um_process_cqe(struct um *machine, struct io_uring_cqe *cqe) {
114
114
struct um_op * op = (struct um_op * )cqe -> user_data ;
115
115
if (unlikely (!op )) return ;
116
116
117
- if (op -> is_multishot )
118
- printf ("process_cqe %p state: %d result: %d flags: %d (%d)\n" , op , op -> state , cqe -> res , cqe -> flags , (cqe -> flags & IORING_CQE_F_MORE ));
117
+ // if (op->is_multishot)
118
+ // printf("process_cqe %p state: %d result: %d flags: %d (%d)\n", op, op->state, cqe->res, cqe->flags, (cqe->flags & IORING_CQE_F_MORE));
119
119
120
120
switch (op -> state ) {
121
121
case OP_submitted :
@@ -211,7 +211,6 @@ inline VALUE um_fiber_switch(struct um *machine) {
211
211
212
212
op = um_runqueue_shift (machine );
213
213
if (op ) {
214
- printf ("resume op: %p state: %d\n" , op , op -> state );
215
214
VALUE resume_value = op -> resume_value ;
216
215
if (op -> state == OP_schedule )
217
216
um_op_checkin (machine , op );
@@ -532,7 +531,6 @@ VALUE um_accept_each_safe_loop(VALUE arg) {
532
531
while (1 ) {
533
532
um_await_op (ctx -> machine , ctx -> op , & result , & flags );
534
533
if (!ctx -> op -> results_head ) {
535
- printf ("accept_each_safe_loop - no results queued, result: %d flags: %d\n" , result , flags );
536
534
// this shouldn't happen!
537
535
rb_raise (rb_eRuntimeError , "no result found for accept_each loop" );
538
536
}
0 commit comments