Skip to content

Commit 588692c

Browse files
committed
Debug um_accept_each
1 parent 5f3b3c8 commit 588692c

File tree

2 files changed

+2
-9
lines changed

2 files changed

+2
-9
lines changed

ext/um/um.c

+2-4
Original file line numberDiff line numberDiff line change
@@ -114,8 +114,8 @@ inline void um_process_cqe(struct um *machine, struct io_uring_cqe *cqe) {
114114
struct um_op *op = (struct um_op *)cqe->user_data;
115115
if (unlikely(!op)) return;
116116

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));
119119

120120
switch (op->state) {
121121
case OP_submitted:
@@ -211,7 +211,6 @@ inline VALUE um_fiber_switch(struct um *machine) {
211211

212212
op = um_runqueue_shift(machine);
213213
if (op) {
214-
printf("resume op: %p state: %d\n", op, op->state);
215214
VALUE resume_value = op->resume_value;
216215
if (op->state == OP_schedule)
217216
um_op_checkin(machine, op);
@@ -532,7 +531,6 @@ VALUE um_accept_each_safe_loop(VALUE arg) {
532531
while (1) {
533532
um_await_op(ctx->machine, ctx->op, &result, &flags);
534533
if (!ctx->op->results_head) {
535-
printf("accept_each_safe_loop - no results queued, result: %d flags: %d\n", result, flags);
536534
// this shouldn't happen!
537535
rb_raise(rb_eRuntimeError, "no result found for accept_each loop");
538536
}

test/test_um.rb

-5
Original file line numberDiff line numberDiff line change
@@ -428,18 +428,13 @@ def test_accept_each
428428
count = 0
429429
machine.accept_each(@server.fileno) do |fd|
430430
count += 1
431-
# machine.write(fd, count.to_s)
432431
break if count == 3
433432
end
434433

435434
assert_equal 3, count
436435
assert_equal 1, machine.pending_count
437436
machine.snooze
438437
assert_equal 0, machine.pending_count
439-
440-
# assert_equal '1', conns[0].readpartial(3)
441-
# assert_equal '2', conns[1].readpartial(3)
442-
# assert_equal '3', conns[2].readpartial(3)
443438
ensure
444439
t&.kill
445440
end

0 commit comments

Comments
 (0)