| ... | @@ -36,30 +36,47 @@ comptime { | ... | @@ -36,30 +36,47 @@ comptime { |
| 36 | if (@TypeOf(posix.IOV_MAX) != void) assert(max_iovecs_len <= posix.IOV_MAX); | 36 | if (@TypeOf(posix.IOV_MAX) != void) assert(max_iovecs_len <= posix.IOV_MAX); |
| 37 | } | 37 | } |
| 38 | | 38 | |
| | 39 | const CancelId = enum(usize) { |
| | 40 | none = 0, |
| | 41 | canceling = std.math.maxInt(usize), |
| | 42 | _, |
| | 43 | |
| | 44 | const ThreadId = if (std.Thread.use_pthreads) std.c.pthread_t else std.Thread.Id; |
| | 45 | |
| | 46 | fn currentThread() CancelId { |
| | 47 | if (std.Thread.use_pthreads) { |
| | 48 | return @enumFromInt(@intFromPtr(std.c.pthread_self())); |
| | 49 | } else { |
| | 50 | return @enumFromInt(std.Thread.getCurrentId()); |
| | 51 | } |
| | 52 | } |
| | 53 | |
| | 54 | fn toThreadId(cancel_id: CancelId) ThreadId { |
| | 55 | if (std.Thread.use_pthreads) { |
| | 56 | return @ptrFromInt(@intFromEnum(cancel_id)); |
| | 57 | } else { |
| | 58 | return @intCast(@intFromEnum(cancel_id)); |
| | 59 | } |
| | 60 | } |
| | 61 | }; |
| | 62 | |
| 39 | const Closure = struct { | 63 | const Closure = struct { |
| 40 | start: Start, | 64 | start: Start, |
| 41 | node: std.SinglyLinkedList.Node = .{}, | 65 | node: std.SinglyLinkedList.Node = .{}, |
| 42 | cancel_tid: std.Thread.Id, | 66 | cancel_tid: CancelId, |
| 43 | /// Whether this task bumps minimum number of threads in the pool. | 67 | /// Whether this task bumps minimum number of threads in the pool. |
| 44 | is_concurrent: bool, | 68 | is_concurrent: bool, |
| 45 | | 69 | |
| 46 | const Start = *const fn (*Closure) void; | 70 | const Start = *const fn (*Closure) void; |
| 47 | | 71 | |
| 48 | const canceling_tid: std.Thread.Id = switch (@typeInfo(std.Thread.Id)) { | | |
| 49 | .int => |int_info| switch (int_info.signedness) { | | |
| 50 | .signed => -1, | | |
| 51 | .unsigned => std.math.maxInt(std.Thread.Id), | | |
| 52 | }, | | |
| 53 | .pointer => @ptrFromInt(std.math.maxInt(usize)), | | |
| 54 | else => @compileError("unsupported std.Thread.Id: " ++ @typeName(std.Thread.Id)), | | |
| 55 | }; | | |
| 56 | | | |
| 57 | fn requestCancel(closure: *Closure) void { | 72 | fn requestCancel(closure: *Closure) void { |
| 58 | switch (@atomicRmw(std.Thread.Id, &closure.cancel_tid, .Xchg, canceling_tid, .acq_rel)) { | 73 | switch (@atomicRmw(CancelId, &closure.cancel_tid, .Xchg, .canceling, .acq_rel)) { |
| 59 | 0, canceling_tid => {}, | 74 | .none, .canceling => {}, |
| 60 | else => |tid| switch (native_os) { | 75 | else => |tid| switch (native_os) { |
| 61 | .linux => _ = std.os.linux.tgkill(std.os.linux.getpid(), @bitCast(tid), posix.SIG.IO), | 76 | .linux => _ = std.os.linux.tgkill(std.os.linux.getpid(), @bitCast(tid.toThreadId()), posix.SIG.IO), |
| 62 | else => {}, | 77 | else => if (std.Thread.use_pthreads) { |
| | 78 | assert(std.c.pthread_kill(tid.toThreadId(), posix.SIG.IO) == 0); |
| | 79 | }, |
| 63 | }, | 80 | }, |
| 64 | } | 81 | } |
| 65 | } | 82 | } |
| ... | @@ -342,9 +359,9 @@ const AsyncClosure = struct { | ... | @@ -342,9 +359,9 @@ const AsyncClosure = struct { |
| 342 | | 359 | |
| 343 | fn start(closure: *Closure) void { | 360 | fn start(closure: *Closure) void { |
| 344 | const ac: *AsyncClosure = @alignCast(@fieldParentPtr("closure", closure)); | 361 | const ac: *AsyncClosure = @alignCast(@fieldParentPtr("closure", closure)); |
| 345 | const tid = std.Thread.getCurrentId(); | 362 | const tid: CancelId = .currentThread(); |
| 346 | if (@cmpxchgStrong(std.Thread.Id, &closure.cancel_tid, 0, tid, .acq_rel, .acquire)) |cancel_tid| { | 363 | if (@cmpxchgStrong(CancelId, &closure.cancel_tid, .none, tid, .acq_rel, .acquire)) |cancel_tid| { |
| 347 | assert(cancel_tid == Closure.canceling_tid); | 364 | assert(cancel_tid == .canceling); |
| 348 | // Even though we already know the task is canceled, we must still | 365 | // Even though we already know the task is canceled, we must still |
| 349 | // run the closure in order to make the return value valid and in | 366 | // run the closure in order to make the return value valid and in |
| 350 | // case there are side effects. | 367 | // case there are side effects. |
| ... | @@ -355,8 +372,8 @@ const AsyncClosure = struct { | ... | @@ -355,8 +372,8 @@ const AsyncClosure = struct { |
| 355 | | 372 | |
| 356 | // In case a cancel happens after successful task completion, prevents | 373 | // In case a cancel happens after successful task completion, prevents |
| 357 | // signal from being delivered to the thread in `requestCancel`. | 374 | // signal from being delivered to the thread in `requestCancel`. |
| 358 | if (@cmpxchgStrong(std.Thread.Id, &closure.cancel_tid, tid, 0, .acq_rel, .acquire)) |cancel_tid| { | 375 | if (@cmpxchgStrong(CancelId, &closure.cancel_tid, tid, .none, .acq_rel, .acquire)) |cancel_tid| { |
| 359 | assert(cancel_tid == Closure.canceling_tid); | 376 | assert(cancel_tid == .canceling); |
| 360 | } | 377 | } |
| 361 | | 378 | |
| 362 | if (@atomicRmw(?*ResetEvent, &ac.select_condition, .Xchg, done_reset_event, .release)) |select_reset| { | 379 | if (@atomicRmw(?*ResetEvent, &ac.select_condition, .Xchg, done_reset_event, .release)) |select_reset| { |
| ... | @@ -418,7 +435,7 @@ fn async( | ... | @@ -418,7 +435,7 @@ fn async( |
| 418 | | 435 | |
| 419 | ac.* = .{ | 436 | ac.* = .{ |
| 420 | .closure = .{ | 437 | .closure = .{ |
| 421 | .cancel_tid = 0, | 438 | .cancel_tid = .none, |
| 422 | .start = AsyncClosure.start, | 439 | .start = AsyncClosure.start, |
| 423 | .is_concurrent = false, | 440 | .is_concurrent = false, |
| 424 | }, | 441 | }, |
| ... | @@ -488,7 +505,7 @@ fn concurrent( | ... | @@ -488,7 +505,7 @@ fn concurrent( |
| 488 | | 505 | |
| 489 | ac.* = .{ | 506 | ac.* = .{ |
| 490 | .closure = .{ | 507 | .closure = .{ |
| 491 | .cancel_tid = 0, | 508 | .cancel_tid = .none, |
| 492 | .start = AsyncClosure.start, | 509 | .start = AsyncClosure.start, |
| 493 | .is_concurrent = true, | 510 | .is_concurrent = true, |
| 494 | }, | 511 | }, |
| ... | @@ -540,12 +557,12 @@ const GroupClosure = struct { | ... | @@ -540,12 +557,12 @@ const GroupClosure = struct { |
| 540 | | 557 | |
| 541 | fn start(closure: *Closure) void { | 558 | fn start(closure: *Closure) void { |
| 542 | const gc: *GroupClosure = @alignCast(@fieldParentPtr("closure", closure)); | 559 | const gc: *GroupClosure = @alignCast(@fieldParentPtr("closure", closure)); |
| 543 | const tid = std.Thread.getCurrentId(); | 560 | const tid: CancelId = .currentThread(); |
| 544 | const group = gc.group; | 561 | const group = gc.group; |
| 545 | const group_state: *std.atomic.Value(usize) = @ptrCast(&group.state); | 562 | const group_state: *std.atomic.Value(usize) = @ptrCast(&group.state); |
| 546 | const reset_event: *ResetEvent = @ptrCast(&group.context); | 563 | const reset_event: *ResetEvent = @ptrCast(&group.context); |
| 547 | if (@cmpxchgStrong(std.Thread.Id, &closure.cancel_tid, 0, tid, .acq_rel, .acquire)) |cancel_tid| { | 564 | if (@cmpxchgStrong(CancelId, &closure.cancel_tid, .none, tid, .acq_rel, .acquire)) |cancel_tid| { |
| 548 | assert(cancel_tid == Closure.canceling_tid); | 565 | assert(cancel_tid == .canceling); |
| 549 | // We already know the task is canceled before running the callback. Since all closures | 566 | // We already know the task is canceled before running the callback. Since all closures |
| 550 | // in a Group have void return type, we can return early. | 567 | // in a Group have void return type, we can return early. |
| 551 | syncFinish(group_state, reset_event); | 568 | syncFinish(group_state, reset_event); |
| ... | @@ -557,8 +574,8 @@ const GroupClosure = struct { | ... | @@ -557,8 +574,8 @@ const GroupClosure = struct { |
| 557 | | 574 | |
| 558 | // In case a cancel happens after successful task completion, prevents | 575 | // In case a cancel happens after successful task completion, prevents |
| 559 | // signal from being delivered to the thread in `requestCancel`. | 576 | // signal from being delivered to the thread in `requestCancel`. |
| 560 | if (@cmpxchgStrong(std.Thread.Id, &closure.cancel_tid, tid, 0, .acq_rel, .acquire)) |cancel_tid| { | 577 | if (@cmpxchgStrong(CancelId, &closure.cancel_tid, tid, .none, .acq_rel, .acquire)) |cancel_tid| { |
| 561 | assert(cancel_tid == Closure.canceling_tid); | 578 | assert(cancel_tid == .canceling); |
| 562 | } | 579 | } |
| 563 | | 580 | |
| 564 | syncFinish(group_state, reset_event); | 581 | syncFinish(group_state, reset_event); |
| ... | @@ -626,7 +643,7 @@ fn groupAsync( | ... | @@ -626,7 +643,7 @@ fn groupAsync( |
| 626 | })); | 643 | })); |
| 627 | gc.* = .{ | 644 | gc.* = .{ |
| 628 | .closure = .{ | 645 | .closure = .{ |
| 629 | .cancel_tid = 0, | 646 | .cancel_tid = .none, |
| 630 | .start = GroupClosure.start, | 647 | .start = GroupClosure.start, |
| 631 | .is_concurrent = false, | 648 | .is_concurrent = false, |
| 632 | }, | 649 | }, |
| ... | @@ -771,7 +788,7 @@ fn cancelRequested(userdata: ?*anyopaque) bool { | ... | @@ -771,7 +788,7 @@ fn cancelRequested(userdata: ?*anyopaque) bool { |
| 771 | const t: *Threaded = @ptrCast(@alignCast(userdata)); | 788 | const t: *Threaded = @ptrCast(@alignCast(userdata)); |
| 772 | _ = t; | 789 | _ = t; |
| 773 | const closure = current_closure orelse return false; | 790 | const closure = current_closure orelse return false; |
| 774 | return @atomicLoad(std.Thread.Id, &closure.cancel_tid, .acquire) == Closure.canceling_tid; | 791 | return @atomicLoad(CancelId, &closure.cancel_tid, .acquire) == .canceling; |
| 775 | } | 792 | } |
| 776 | | 793 | |
| 777 | fn checkCancel(t: *Threaded) error{Canceled}!void { | 794 | fn checkCancel(t: *Threaded) error{Canceled}!void { |